Coding
PromptBeginner5 minmarkdown
Nano Banana Pro
Agent skill for nano-banana-pro
6
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.
Sign in to like and favorite skills
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)
git checkout -b feature/user-authentication
git checkout main git pull origin main git checkout feature/user-authentication git rebase main
git status<<<<<<<, =======, >>>>>>>git add .git rebase --continue or git merge --continuescripts/create-feature-branch.sh - Automated feature branch creationscripts/sync-with-main.sh - Sync current branch with mainscripts/prepare-release.sh - Prepare a new release branchreferences/naming-conventions.md - Git branch naming conventions and best practicesreferences/workflow-patterns.md - Detailed workflow patterns and commands for different Git strategies