Our version control manager recommends us to use git pull --rebase to pull new changes from upstream branch. I want to use EGit (Eclipse plugin for git) to exec
git pull --rebase
Use
git config branch.*branch-name*.rebase true
And pull will automatically rebase.
pull
You can set it up to configure new branches automatically.
git config branch.autosetuprebase always