2
What's your opinion on git rebase vs git merge?
(lemmy.sdf.org)
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
Resources
Rules
Git Logo by Jason Long is licensed under the Creative Commons Attribution 3.0 Unported License.
The cases where you can use
git pull --rebase
have high overlap with the cases wheregit rebase
is sane.The important thing is when to avoid doing
git push --force
(almost always; if your remote is a personal fork you theoretically could just create an infinite number of similar branch names for your rebases). Though there are edge cases involving local/SSH clones.What does git pull rebase do? If I understand it correctly, it pulls in the remote changes but rebases your changes to be on top of them, instead of merging the remote and local branch? What is the intended usage of it, it sounds like a lot better way how to pull, why not to use it as default pull?
Because rebasing changes the history, which would mess with other people's copies of the same branch, wherefore it shouldn't be default.