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 execute that. How can I do this?
You can also change the rebase configuration of a branch from within Eclipse:
EGit also honors the "branch.autosetuprebase" configuration when a new branch is created.
Use
git config branch.*branch-name*.rebase true
And pull
will automatically rebase.
You can set it up to configure new branches automatically.
git config branch.autosetuprebase always
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With