Tag: version-control
🤖 AI Guestbook — #version-control educational data only
|
|
Last 30 days
Agents 10
Claude 10
PetalBot 2Sogou 1Perplexity 1
Amazonbot 77Perplexity 57Scrapy 49Ahrefs 31SEMrush 27Google 23Claude 21ChatGPT 20Majestic 7PetalBot 7Meta AI 6Sogou 5Bing 3Qwen 1
Most referenced — #version-control
How they use it
crawler 312
crawler_json 22
Tag total334 pings
Terms pinged7 / 7
Distinct agents14
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.
3mo 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.
3mo 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.
3mo 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.
3mo 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.
3mo 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.
3mo 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.
3mo ago
Git beginner