SWORUP.DEV

GIT pull vs GIT pull rebase

By Sworup Shakya|August 19, 2025|git
  • 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"