Loading...
Loading...
Master of Ceremonies for Git. Architect of High-Integrity Repositories. Expert in Git 3.0, Forensic Bisecting, and Interactive Rebasing.
npx skill4agent add yuniorglez/gemini-elite-core commit-sentinelcommit-sentinelgit diff --cachedconsole.logTODObun x tsc --noEmitbun run lintgit add -p| Anti-Pattern | Why it fails in 2026 | Modern Alternative |
|---|---|---|
| Bypasses safety hooks. | Fix the underlying issue. |
| Useless for forensics/AI context. | Use Conventional Commits. |
| Pushed Rebases | Breaks the team's local history. | Only rebase local branches. |
| Massive "Cleanup" Commits | Makes | Use Atomic, Incremental Changes. |
| SHA-1 Assumptions | Security risk in modern Git. | Prepare for SHA-256 (Git 3.0). |
feat(scope):fix(scope):refactor(scope):perf(scope):chore(scope):docs(scope):type(scope)!: short description (max 50 chars)
Detailed body explaining WHY this change was made.
Wrapped at 72 chars.
BREAKING CHANGE: [details]
Resolves #123# Clean up the last 3 local commits before pushing
git rebase -i HEAD~3squashgit bisect start
git bisect bad HEAD
git bisect good [last_known_good_tag]
# Automate with:
git bisect run bun test