this post was submitted on 04 Apr 2024
1113 points (98.1% liked)

Programmer Humor

19589 readers
2179 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
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 20 points 7 months ago (38 children)

I've been using merge, and I hate that I don't even know what rebase really does

[–] [email protected] 52 points 7 months ago* (last edited 7 months ago) (32 children)

Merge takes two commits and smooshes them together at their current state, and may require one commit to reconcile changes. Rebase takes a whole branch and moves it, as if you started working on it from a more recent base commit, and will ask you to reconcile changes as it replays history.

[–] [email protected] 13 points 7 months ago (3 children)

This diagram seems wrong to me. Isn't the second image a squash merge? Also why would rebasing a feature branch change main?

[–] [email protected] 2 points 7 months ago

The only difference between a *rebase-merge and a rebase is whether main is reset to it or not. If you kept the main branch label on D and added a feature branch label on G', that would be what @[email protected] meant.

load more comments (2 replies)
load more comments (30 replies)
load more comments (35 replies)