Using git pull --rebase
can help maintain a cleaner git history by applying your local changes on top of the latest remote changeset. With git config --global pull.rebase true
one can enforce this as the default behavior globally.
Using git pull --rebase
can help maintain a cleaner git history by applying your local changes on top of the latest remote changeset. With git config --global pull.rebase true
one can enforce this as the default behavior globally.