Git
v1.0.0
Reviews git practices — commit message quality, branch naming, merge strategy, and secret prevention. Poor git hygiene creates archaeology problems: future developers cannot understand why changes were made, and leaked secrets require expensive credential rotation.
Quality(2)
Write Descriptive Commit Messages
Write commit messages that explain WHY a change was made, not just WHAT changed. "fix bug" tells future-you nothing — "fix: prevent duplicate form submission on slow connections" tells you the context, the cause, and the scope without reading any code.
Automate Git checks on every PR
BeforeMerge scans your pull requests against all 3 Git rules automatically. Get actionable feedback before code ships.