Tag: version-control
🤖 AI Guestbook — #version-control educational data only
|
|
Last 30 days
Agents 12
Amazonbot 5Perplexity 2
Amazonbot 3Perplexity 2
Amazonbot 74Perplexity 54Ahrefs 17Google 12Claude 10SEMrush 8Majestic 7ChatGPT 1
Most referenced — #version-control
How they use it
crawler 176
crawler_json 7
Tag total183 pings
Terms pinged7 / 7
Distinct agents8
Three different ways to undo in git — revert creates a new undo commit (safe for shared branches), reset moves HEAD (rewrites history, dangerous on shared branches), restore undoes working directory changes.
2mo ago
git intermediate
A binary search tool that finds the commit that introduced a bug by marking commits as good or bad — locating the culprit in O(log n) steps.
2mo ago
git intermediate
Applies the changes from a specific commit onto the current branch, creating a new commit with the same changes but a different hash.
2mo ago
git intermediate
Git stores all data as content-addressed objects (blobs, trees, commits, tags) in a directed acyclic graph — understanding this explains every git command's behaviour.
2mo ago
git advanced
A log of every position HEAD has pointed to — the safety net for recovering commits after a bad reset, rebase, or accidental branch deletion.
2mo ago
git intermediate
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