To configure git to do a pull with rebase everytime:
git config --global branch.autosetuprebase alwaysAnd to setup an existing branch in the same way:
git config branch.ACTUAL_BRANCH_NAME.rebase trueDeveloper from somewhere
To configure git to do a pull with rebase everytime:
git config --global branch.autosetuprebase alwaysAnd to setup an existing branch in the same way:
git config branch.ACTUAL_BRANCH_NAME.rebase true