git 提交出错:fatal: Need to specify how to reconcile divergent branches.

git push 时候出错:
fatal: Need to specify how to reconcile divergent branches.
或者
error: failed to push some refs to

这是因为远程和本地版本不一致导致的

解决方法:
git pull 拉取远程代码,如果可以拉取成功解决冲突后在git push就可以了, 如果拉取失败
使用git merar 拉取成功之后 在git push

你可能感兴趣的:(git)