| name | Git Branch PR Workflow |
| description | Branch management, pull request workflows, and GitHub integration. Modern Git commands (switch, restore), branch naming conventions, linear history with rebase, trunk-based development, and GitHub MCP tools for PRs. |
| allowed-tools | Bash, Read, mcp__github__create_pull_request, mcp__github__list_pull_requests, mcp__github__update_pull_request |
Git Branch PR Workflow
Expert guidance for branch management, pull request workflows, and GitHub integration using modern Git commands and linear history practices.
Core Expertise
- Modern Git Commands: Use
git switchandgit restoreinstead of checkout - Branch Naming: Structured conventions (feat/, fix/, chore/, hotfix/)
- Linear History: Rebase-first workflow, squash merging, clean history
- Trunk-Based Development: Short-lived feature branches with frequent integration
- GitHub MCP Integration: Use mcp__github__* tools instead of gh CLI
Modern Git Commands (2025)
Switch vs Checkout
Modern Git uses specialized commands instead of multi-purpose git checkout:
# Branch switching - NEW WAY (Git 2.23+)
git switch feature-branch # vs git checkout feature-branch
git switch -c new-feature # vs git checkout -b new-feature
git switch - # vs git checkout -
# Creating branches with tracking
git switch -c feature --track origin/feature
git switch -C force-recreate-branch
Restore vs Reset/Checkout
File restoration is now handled by git restore:
# Unstaging files - NEW WAY
git restore --staged file.txt # vs git reset HEAD file.txt
git restore --staged . # vs git reset HEAD .
# Discarding changes - NEW WAY
git restore file.txt # vs git checkout -- file.txt
git restore . # vs git checkout -- .
# Restore from specific commit
git restore --source=HEAD~2 file.txt # vs git checkout HEAD~2 -- file.txt
git restore --source=main --staged . # vs git reset main .
Command Migration Guide
| Legacy Command | Modern Alternative | Purpose |
|---|---|---|
git checkout branch |
git switch branch |
Switch branches |
git checkout -b new |
git switch -c new |
Create & switch |
git checkout -- file |
git restore file |
Discard changes |
git reset HEAD file |
git restore --staged file |
Unstage file |
git checkout HEAD~1 -- file |
git restore --source=HEAD~1 file |
Restore from commit |
Branch Naming Conventions
Structured Branch Names
# Feature development
git switch -c feat/payment-integration
git switch -c feat/user-dashboard
git switch -c feat/api-v2
# Bug fixes
git switch -c fix/login-validation
git switch -c fix/memory-leak-auth
git switch -c fix/broken-tests
# Maintenance and refactoring
git switch -c chore/update-dependencies
git switch -c chore/cleanup-tests
git switch -c refactor/auth-service
# Hotfixes (for production)
git switch -c hotfix/security-patch
git switch -c hotfix/critical-bug-fix
Branch Naming Format
{type}/{description}-{YYYYMMDD} (date optional but recommended for clarity)
Types:
feat/- New featuresfix/- Bug fixeschore/- Maintenance, dependencies, linter fixesdocs/- Documentation changesrefactor/- Code restructuringhotfix/- Emergency production fixes
Linear History Workflow
Trunk-Based Development
Short-lived feature branches with frequent integration:
# Feature branch lifecycle (max 2 days)
git switch main
git pull origin main
git switch -c feat/user-auth
# Daily rebase to stay current
git switch main && git pull
git switch feat/user-auth
git rebase main
# Interactive cleanup before PR
git rebase -i main
# Squash, fixup, reword commits for clean history
# Push and create PR
git push -u origin feat/user-auth
Squash Merge Strategy
Maintain linear main branch history:
# Manual squash merge
git switch main
git merge --squash feat/user-auth
git commit -m "feat: add user authentication system
- Implement JWT token validation
- Add login/logout endpoints
- Create user session management
Closes #123"
Interactive Rebase Workflow
Clean up commits before sharing:
# Rebase last 3 commits
git rebase -i HEAD~3
# Common rebase commands:
# pick = use commit as-is
# squash = combine with previous commit
# fixup = squash without editing message
# reword = change commit message
# drop = remove commit entirely
# Example rebase todo list:
pick a1b2c3d feat: add login form
fixup d4e5f6g fix typo in login form
squash g7h8i9j add form validation
reword j1k2l3m implement JWT tokens
GitHub MCP Integration
Use GitHub MCP tools for all GitHub operations:
# Get repository information
mcp__github__get_me() # Get authenticated user info
# List and create PRs
mcp__github__list_pull_requests(owner="owner", repo="repo")
mcp__github__create_pull_request(
owner="owner",
repo="repo",
title="feat: add authentication",
head="feat/auth",
base="main",
body="## Summary\n- JWT authentication\n- OAuth support\n\nCloses #123"
)
# Update PRs
mcp__github__update_pull_request(
owner="owner",
repo="repo",
pullNumber=42,
title="Updated title",
state="open"
)
# List and create issues
mcp__github__list_issues(owner="owner", repo="repo")
Best Practices
Daily Integration Workflow
# Start of day: sync with main
git switch main
git pull origin main
git switch feat/current-work
git rebase main
# End of day: push progress
git add . && git commit -m "wip: daily progress checkpoint"
git push origin feat/current-work
# Before PR: clean up history
git rebase -i main
git push --force-with-lease origin feat/current-work
Conflict Resolution with Rebase
# When rebase conflicts occur
git rebase main
# Fix conflicts in editor
git add resolved-file.txt
git rebase --continue
# If rebase gets messy, abort and merge instead
git rebase --abort
git merge main
Safe Force Pushing
# Always use --force-with-lease to prevent overwriting others' work
git push --force-with-lease origin feat/branch-name
# Never force push to main/shared branches
# Use this alias for safety:
git config alias.pushf 'push --force-with-lease'
Main Branch Protection
Configure branch rules for linear history via GitHub MCP:
# Require linear history (disable merge commits)
# Configure via GitHub settings or MCP tools
# - Require pull request reviews
# - Require status checks to pass
# - Enforce linear history (squash merge only)
Pull Request Workflow
PR Title Format
Use conventional commit format in PR titles:
feat: add user authenticationfix: resolve login validation bugdocs: update API documentationchore: update dependencies
PR Body Template
## Summary
Brief description of changes
## Changes
- Bullet points of key changes
- Link related work
## Testing
How changes were tested
Closes #123
PR Creation Best Practices
- One focus per PR - Single logical change
- Small PRs - Easier to review (< 400 lines preferred)
- Link issues - Use "Closes #123" or "Fixes #456"
- Add labels - Use GitHub labels for categorization
- Request reviewers - Tag specific reviewers when needed
Troubleshooting
Branch Diverged from Remote
# Pull with rebase to maintain linear history
git pull --rebase origin feat/branch-name
# Or reset if local changes can be discarded
git fetch origin
git reset --hard origin/feat/branch-name
Accidentally Committed to Main
# Move commit to new branch
git branch feat/accidental-commit
git reset --hard HEAD~1
git switch feat/accidental-commit
Rebase Conflicts Are Too Complex
# Abort rebase and use merge instead
git rebase --abort
git merge main