赞
踩
在使用 Git 远程提交推送的时候出现了一个报错
git push -u origin master
报错如下:
- error: failed to push some refs to 'git@github.com: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
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。