Git terms
Version control is time travel for your codebase
Git is the version control system the entire industry converged on — and there is more to it than commit, push, and pull. This category covers branching strategies, rebasing, merging, conflict resolution, hooks, tags, and the internal object model that explains why Git behaves the way it does. Understanding Git deeply prevents disasters and enables confident collaboration.
Temporarily shelves uncommitted changes so you can switch context — work in progress is saved to a stack and restored when you return.
2mo ago
git beginner
Named references to specific commits, used to mark release points — annotated tags include metadata and are signed; lightweight tags are just pointers.
2mo ago
git beginner