Comprehensive Git workflow automation including branching strategies, pull request creation, code reviews, merge strategies, and release management. Use when Claude needs to help with Git operations, branching models (Git Flow, GitHub Flow), pull request creation, code reviews, merge conflicts, or release processes.
This skill automates common Git workflows and provides expert guidance on best practices for version control.
```
main (production-ready code)
├── develop (integration branch)
│ ├── feature/* (feature branches)
│ └── release/* (release preparation)
└── hotfix/* (urgent fixes)
```
```
main (always deployable)
└── feature/* (short-lived branches)
```
```bash
git checkout -b feature/user-authentication
```
```bash
git checkout main
git pull origin main
git checkout feature/user-authentication
git rebase main
```
1. Identify conflicted files: `git status`
2. Open files and look for conflict markers: `<<<<<<<`, `=======`, `>>>>>>>`
3. Manually resolve conflicts by keeping desired changes
4. Stage resolved files: `git add .`
5. Complete the merge: `git rebase --continue` or `git merge --continue`
Leave a review
No reviews yet. Be the first to review this skill!
# Download SKILL.md from killerskills.ai/api/skills/git-workflow-automation/raw