
Git Workflow Helper
- 41 installs
- 16 repo stars
- Updated November 20, 2025
- jackspace/claudeskillz
Get guidance on Git workflows, troubleshooting, and best practices.
About
Provides expert guidance for Git workflows, troubleshooting, and best practices. A developer uses it when unsure how to structure branches, resolve issues, or follow Git conventions.
- Workflow and troubleshooting guidance
- Git best-practice recommendations
Git Workflow Helper by the numbers
- 41 all-time installs (skills.sh)
- Ranked #320 of 735 Git & Pull Requests skills by installs in the Skillselion catalog
- Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/jackspace/claudeskillz --skill git-workflow-helperAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 41 |
|---|---|
| repo stars | ★ 16 |
| Last updated | November 20, 2025 |
| Repository | jackspace/claudeskillz ↗ |
What it does
Get guidance on Git workflows, troubleshooting, and best practices.
Files
Git-workflow-helper
Instructions
When working with Git:
- Commit early and often
- Write clear commit messages (imperative mood)
- Use branches for features/fixes
- Rebase before merge for clean history
- main/master: Production-ready
- develop: Integration branch
- feature/*: New features
- fix/*: Bug fixes
- hotfix/*: Emergency fixes
- Undo changes: git reset, git revert, git restore
- Stash work: git stash save/pop/apply
- Interactive rebase: git rebase -i
- Cherry-pick commits: git cherry-pick
- Resolve merge conflicts
- Recover lost commits (git reflog)
- Fix detached HEAD
- Clean up branches
- Never force push to shared branches
- Use .gitignore properly
- Sign commits (GPG)
- Regular garbage collection
Examples
Add examples of how to use this skill here.
Notes
- This skill was auto-generated
- Edit this file to customize behavior
{
"sections": {
"Notes": "- This skill was auto-generated\n- Edit this file to customize behavior",
"Instructions": "When working with Git:\n- Commit early and often\n- Write clear commit messages (imperative mood)\n- Use branches for features/fixes\n- Rebase before merge for clean history\n- main/master: Production-ready\n- develop: Integration branch\n- feature/*: New features\n- fix/*: Bug fixes\n- hotfix/*: Emergency fixes\n- Undo changes: git reset, git revert, git restore\n- Stash work: git stash save/pop/apply\n- Interactive rebase: git rebase -i\n- Cherry-pick commits: git cherry-pick\n- Resolve merge conflicts\n- Recover lost commits (git reflog)\n- Fix detached HEAD\n- Clean up branches\n- Never force push to shared branches\n- Use .gitignore properly\n- Sign commits (GPG)\n- Regular garbage collection",
"Examples": "Add examples of how to use this skill here."
},
"id": "git-workflow-helper",
"name": "git-workflow-helper",
"description": "Expert guidance for Git workflows, troubleshooting, and best practices"
}---
name: git-workflow-helper
description: Expert guidance for Git workflows, troubleshooting, and best practices
---
# Git-workflow-helper
## Instructions
When working with Git:
- Commit early and often
- Write clear commit messages (imperative mood)
- Use branches for features/fixes
- Rebase before merge for clean history
- main/master: Production-ready
- develop: Integration branch
- feature/*: New features
- fix/*: Bug fixes
- hotfix/*: Emergency fixes
- Undo changes: git reset, git revert, git restore
- Stash work: git stash save/pop/apply
- Interactive rebase: git rebase -i
- Cherry-pick commits: git cherry-pick
- Resolve merge conflicts
- Recover lost commits (git reflog)
- Fix detached HEAD
- Clean up branches
- Never force push to shared branches
- Use .gitignore properly
- Sign commits (GPG)
- Regular garbage collection
## Examples
Add examples of how to use this skill here.
## Notes
- This skill was auto-generated
- Edit this file to customize behavior