GIT pull vs GIT pull rebase
- Always try
git pull --rebase
first. If it works then you're done. - If Merge conflict you can undo with
git rebase --abort
Alias
# git pr
git config --global alias.pr "pull --rebase"
git pull --rebase
first. If it works then you're done.git rebase --abort
# git pr
git config --global alias.pr "pull --rebase"