1113
Rebase Supremacy (programming.dev)
you are viewing a single comment's thread
view the rest of the comments
[-] 13@kbin.run 66 points 4 months ago* (last edited 4 months ago)
[-] wise_pancake@lemmy.ca 86 points 4 months ago

History is written by the squashers.

[-] magic_lobster_party@kbin.run 23 points 4 months ago

Imagine working with a tangled spaghetti of history

[-] victorz@lemmy.world 11 points 4 months ago

You don't? Just follow the merges.

[-] muad_dibber@lemmygrad.ml 5 points 4 months ago

You try to pull someone's changes, but whoops, they used rebase and rewrote history! Delete the branch and start over.

[-] thesmokingman@programming.dev 9 points 4 months ago

No you just do a rebase to bring it in. Assuming you’re making atomic commits you shouldn’t have a ton of merge conflicts. If you have to do this a lot, your branch scope is really bad and the problem isn’t in how you’re using got, it’s in how you’re slicing work.

[-] muad_dibber@lemmygrad.ml 4 points 4 months ago

If you try to pull someone else's rebased / history rewritten branch, your git will tell you that it's rejected. You can completely avoid this by merging instead of rewriting history.

[-] Atemu@lemmy.ml 1 points 4 months ago

...or you simply rebase the subset of commits of your branch onto the rewritten branch. That's like 10 simple button presses in magit.

[-] expr@programming.dev 3 points 4 months ago* (last edited 4 months ago)

2 things:

  1. You don't pull rebased work pretty much ever. Rebasing is for feature branches by a single author to craft a high quality history, generally. It's much, much better than littering your branch with merge commits from upstream.
  2. If for some reason you do need to pull rebased changes, you simply do git pull --rebase. Works without issue.
this post was submitted on 04 Apr 2024
1113 points (98.1% liked)

Programmer Humor

18890 readers
1020 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