1106
Rebase Supremacy
(programming.dev)
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.
Anyone mind explaining to me how
git rebase
is worth the effort?git merge
has it's own issues but I just don't see any benefit to rebase over it.Well, rebase allows you to resolve the same conflict ten times in a row instead of doing it once. How cool is that?
Squash your branch first
Doesn't this defeat the purpose, may as well merge then no?
Do not merge your unfinished stuff into main.
I don't like merging main into my branch because I don't understand git, and I feel like that can make a confusing history.