Commits
Everything on SkillVeris tagged Commits — collected across the glossary, study notes, blog, and cheat sheets.
4 resources across 1 library
Study Notes(4)
Amending and Rewriting Commits
Amending lets you fix the most recent commit's message or contents without creating a new commit, while broader history rewriting tools reshape older commits b…
Cherry-Picking Commits
Cherry-picking applies the changes from a specific commit made on one branch onto another, letting you selectively port individual fixes without merging entire…
Recovering Lost Commits with reflog
Discover how git's reflog silently tracks every movement of HEAD and branch tips, giving you a safety net to recover commits after resets, rebases, or accident…
Signed Commits and Security
Understand how GPG/SSH commit signing proves authorship, why Git history is not tamper-proof by default, and practical steps to secure a repository.