Home > OS >  Visual studio code git pull is always running git rebase
Visual studio code git pull is always running git rebase

Time:07-11

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
  • Related