this post was submitted on 06 Oct 2025
830 points (96.7% liked)

Programmer Humor

26799 readers
2907 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 2 years ago
MODERATORS
 

Yeah learned this the hard way.

you are viewing a single comment's thread
view the rest of the comments
[โ€“] hayvan@feddit.nl 2 points 3 days ago (1 children)

Yeah, I hate it when my repo is a chain of merge commits. I want to see actual changes to the code, not branch management history.

[โ€“] mr_satan@lemmy.zip 2 points 3 days ago

I'm the opposite. I just let git take care of the stupid content. Why mess with the commit graph? Merging locally (instead of squashing) works better with merge requests because the graph clearly shows what changes went where.

I do some branch maintenance on my local branch (rebasing) until there are conflicts, but other than that I don't see any benefit for messing with commit history.