git push 失败与解决方法

在使用 Git 远程提交推送的时候出现了一个报错

git push -u origin master

报错如下:

error: failed to push some refs to '[email protected]:xxx.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

从提示可以看出,是由于两者不同步,因此需要先 pull,进行合并然后在进行 push,因此先使用

git pull --rebase origin master

将远程文件同步下来,然后再执行推送

git push -u origin master

 

你可能感兴趣的:(#,git,计算机基础)