Git
6 items tagged with "git"
Best Practices2
Conventional Commits Spec
Machine-readable Git commit messages enabling automated changelogs and semantic releases.
GitFlow Branching Model
A structured Git branching model using long-lived main and develop branches plus dedicated feature, release, and hotfix branches to coordinate scheduled releases.
Tutorials2
How to Scan a Repository for Leaked Secrets
Detect committed secrets, scan git history, add a pre-commit hook, and gate CI so credentials never reach the remote.
Commit the Drift Baseline to Your Repository
Check your baseline file into version control so every developer and CI run compares against the same shared drift reference.
FAQs2
What does the vg why command do?
`vg why <package>` traces a dependency through your git history: who added it, every version change since, and who made each one. If your latest `vg s...
What does the vg bisect command do?
`vg bisect <package> <constraint>` pinpoints the commit where a dependency crossed a version line. Where `vg why` narrates every version change, `vg b...