Home > Mobile >  Try running ‘Pull’ first to integrate your changes VS Code GitHub error
Try running ‘Pull’ first to integrate your changes VS Code GitHub error

Time:09-19

When changes are pushed from local to remote server error "Try running ‘Pull’ first to integrate your changes"

CodePudding user response:

use git pull first to merge remote changes

  1. press control ~
  2. type the following command
git pull

or just use vscode enter image description here

PS: you really need to learn the basics of git

getting started about git

CodePudding user response:

Ok. Its a big problem for new users. But there is easy way to solve it. Lets solve it. In your vs code go to the three(3) dots here. hover on "push, pull" option and click on "pull from" option. Then select your remote repository and then branch. Now push the changes again. I hope it will solve your problem

  • Related