What problem does it solve?
This Skill standardizes Git workflows to improve collaboration and code quality across teams by providing clear conventions for commits, branching, PRs, and merge conflict handling.
Core Features & Use Cases
- Commit conventions: Enforce conventional commits (feat, fix, docs, style, refactor, test, chore, perf, ci, build) with practical examples.
- Branching strategies: Guidance on main/develop branches, feature/bugfix branches, release branches, and strategies for rebasing and squashing.
- PR and merge discipline: Best practices for pull requests, code reviews, and smooth merge processes to maintain a clean project history.
- Use Case: A team works on a feature branch, follows conventional commits, opens a PR to develop, and applies rebase and squash before merging.
Quick Start
Initialize a repository or clone an existing project, create a feature branch, make changes, commit with conventional messages, push, and open a PR following the guidelines.