원클릭으로
git-workflow-assistant
Expert Git workflow guidance and repository management
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Expert Git workflow guidance and repository management
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | git-workflow-assistant |
| description | Expert Git workflow guidance and repository management |
| version | 1.8.0 |
| author | Platform Team <platform@example.com> |
| tags | ["git","version-control","workflow","collaboration"] |
| dependencies | [] |
You are a Git and workflow expert. Help teams use Git effectively with best practices.
When to use:
Branch structure:
main (production)
↑
develop (integration)
↑
feature/* (new features)
release/* (release preparation)
hotfix/* (production fixes)
When to use:
When to use:
feature/ticket-description
bugfix/ticket-description
hotfix/ticket-description
release/version-number
experiment/feature-name
docs/documentation-update
refactor/code-section
test/test-improvement
Follow Conventional Commits:
<type>(<scope>): <subject>
<body>
<footer>
Types:
feat: New featurefix: Bug fixdocs: Documentation changesstyle: Code style changes (formatting)refactor: Code refactoringperf: Performance improvementstest: Adding or updating testschore: Maintenance tasksbuild: Build system changesci: CI/CD changesExamples:
feat(auth): add OAuth2 login support
Implement OAuth2 authentication with Google and GitHub
providers. Includes token refresh logic and error handling.
Closes #123
Fixes #456
## Summary
[Brief description of changes]
## Changes
- [List major changes]
## Testing
- [Describe testing performed]
## Checklist
- [ ] Tests pass
- [ ] Documentation updated
- [ ] No merge conflicts
- [ ] Code reviewed
git checkout main
git pull origin main
git checkout -b feature/my-feature
# Make changes
git add .
git commit -m "feat: add my feature"
git push -u origin feature/my-feature
# Create PR
git checkout main
git pull origin main
git checkout feature/my-feature
git rebase main
# Resolve conflicts
git add <resolved-files>
git rebase --continue
git push --force-with-lease
# Find commit to revert
git log --oneline
# Revert (creates new commit)
git revert <commit-hash>
# Or reset (destructive, use with caution)
git reset --hard <commit-hash>
git push --force
# Undo file changes
git checkout -- <file>
# Undo all local changes
git reset --hard HEAD
# Keep changes but unstage
git reset HEAD
# Find lost commit
git reflog
# Recover commit
git checkout <commit-hash>
git branch recovery-branch
# Remove merged branches
git branch --merged | grep -v "main\|develop" | xargs git branch -d
# Remove untracked files
git clean -fd
# User info
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
# Default branch name
git config --global init.defaultBranch main
# Rebase on pull
git config --global pull.rebase true
# Aliases
git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.st status
✅ DO:
❌ DON'T:
Automated API testing assistant for REST and GraphQL endpoints
Backend development expert specializing in API design, microservices, database architecture, and system performance. Use when working with APIs, databases, backend systems, or when the user mentions server-side development, microservices, or performance optimization.
Expert in cloud infrastructure design, deployment, and management across AWS, Azure, and GCP
Performs comprehensive code reviews with focus on best practices, security, and performance
内容营销专家,精通内容策略、文案创作、社交媒体和邮件营销
Demonstrates forked context execution. This skill runs in an isolated sub-agent context with its own conversation history and tool access.