VSCODE is running git rebase everytime I need to pull a branch. How can I fix this?
CodePudding user response:
SOLVED with git config pull.rebase false this solved for me.
CodePudding user response:
Also possible to just unset it, since the default is "merge unless pull.rebase is true"
git config --unset pull.rebase
