Skip to content

Latest commit

 

History

History

README.md

03 — Git Workflow

Define how you work with git — from branching to reviewing to merging.

What's here

Template Purpose
branching-strategy.md Choose and document your branching model
commit-conventions.md Commit message format and rules
code-review-checklist.md What to check in every PR review
merge-policy.md When and how PRs get merged

Solo maintainer fast track

If you're working solo, you probably don't need a complex branching model. Start with:

  1. Branching: GitHub Flow (main + feature branches)
  2. Commits: Conventional Commits
  3. Reviews: Self-review with the checklist before merge
  4. Merge: Squash merge to main

Adapt as your team grows.