1096
you are viewing a single comment's thread
view the rest of the comments
[-] cyborganism@lemmy.ca 34 points 3 months ago

Once you understand that everything is similar to a tag, like branch names are basically tags that move forward with each commit, that HEAD is a tag that points to your current commit location in history, and what command moves what kind of tag, it becomes easier to understand.

Suddenly having a detached HEAD isn't as scary as you might think. You get a better understanding of fast forward merges vs regular 3-way merge.

Also understanding that each commit is unique and will always remain in the history and can be recovered using special commands. Nothing is lost in git, unless you delete the .git sub-directory.

[-] zaphod@lemmy.ca 13 points 3 months ago

For folks unaware, the technical git term, here, is a 'ref'. Everything that points to a commit is a ref, whether it's HEAD, the tip of a branch, or a tag. If the git manpage mentions a 'ref' that's what it's talking about.

[-] cyborganism@lemmy.ca 3 points 3 months ago

Right. I just wanted to keep it as simple as possible.

[-] zaphod@lemmy.ca 3 points 3 months ago

Oh, no worries, just figured I'd add that extra little bit of detail as it's a useful hook into a lot of other git concepts.

[-] embed_me@programming.dev 2 points 3 months ago

Honestly I've come to realise that being precise is the simplest in the long run

[-] spikespaz@programming.dev 2 points 3 months ago

People get overloaded with words. You have to focus on one concept at a time. Let them ask for others.

[-] docAvid@midwest.social 4 points 3 months ago

Orphaned commits can get garbage collected at some point, though.

[-] cyborganism@lemmy.ca 2 points 3 months ago* (last edited 3 months ago)

Oh fuck. I didn't think of that. Than you for reminding me.

Edit: Ah but you can only run this in your local repo. If you happen to push anything, you might not be able to run it on the remote. Many DevOps platforms won't allow it.

[-] docAvid@midwest.social 2 points 3 months ago

Oh yeah, and anybody else who had fetched in those commits may still have them as well. It's hard for something to be gone-gone, but it may be annoyingly-hard-to-recover-gone.

[-] uis@lemm.ee 1 points 3 months ago

This I call decapitation

this post was submitted on 03 Mar 2024
1096 points (97.8% liked)

Programmer Humor

18203 readers
1491 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS