git-workflow
Installation
Summary
Complete Git workflow management covering branches, commits, merges, conflicts, and team collaboration.
- Supports standard branch workflows with naming conventions for features, bugfixes, hotfixes, refactoring, and documentation
- Includes commit message standards using conventional commits format with type, scope, and detailed descriptions
- Covers merge strategies, interactive rebasing, cherry-picking, and conflict resolution with step-by-step examples
- Provides advanced patterns like stashing, bisecting for bug hunting, and recovery techniques for common mistakes
- Includes best practices, configuration setup, and real-world workflow examples for feature development, hotfixes, and team collaboration
SKILL.md
Git Workflow
When to use this skill
- Creating meaningful commit messages
- Managing branches
- Merging code
- Resolving conflicts
- Collaborating with team
- Git best practices
Instructions
Step 1: Branch management
Create feature branch:
# Create and switch to new branch
git checkout -b feature/feature-name