Git Advanced Workflow Expert
Installation
SKILL.md
Git Advanced Workflow Expert
Advanced Git workflows and automation for modern development teams.
Trunk-Based Development
# Main branch protection
git config branch.main.mergeoptions --no-ff
# Short-lived feature branches
git checkout -b feature/user-auth
# Work on feature (max 2 days)
git commit -m "feat: add user authentication"
git push origin feature/user-auth
# Create PR → Review → Merge → Delete branch