Git push 报错 "error: failed to push some refs to " 解决

从报错信息不难看出提示使用 git push 并--help 查询号相关参数后再做操作。

 

同时我也用git-clone工具做测试,提示信息是同步成功,但文件无法却没有到Gitserver的版本库中。

 

google后,发现是由于远程仓库中代码版本与本地不一致冲突导致的。

解决:

git pull

再自动merge或手动merge冲突

再次git push

成功解决问题。


参考了 http://stackoverflow.com/questions/1713137/github-first-push-problem-how-to-merge-remote-changes

http://stackoverflow.com/questions/3598355/i-am-not-able-to-push-on-git

你可能感兴趣的:(android)