! [rejected] develop -> develop (non-fast-forward) error: failed to push some refs to...

git提交常见错误1:

$ git push origin develop 
To github.azc.ext.hp.com:xun-chen/uservice.git
 ! [rejected]          develop -> develop (non-fast-forward)
error: failed to push some refs to 'github.azc.ext.hp.com:xun-chen/uservice.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. 

背景:

描述:当用develop向远程提交代码并merge后,且merge过程中你又有别的改动,当你再提交时便会出现这个问题,主要原因是因为分支的变动,
你没有指向当前最新的head(可查看git log命令),所以你需要先跟新本地及fork厂库的代码,再改代码。

解决方法一:

(你舍不得你修改的,那么你觉得万无一失的情况下,用你
在本地拉取的远程最新代码去覆盖fork厂库也是可以的。)(比较快,但有风险)

git push -f

解决方法二:

将修改的备份,然后回撤至初始提交,然后拉取代码,更新分支及fork仓库,再将修改的部分放到代码里面去(比较笨,但实用)

解决方法三:

同过stash save命令将本地未提交修改先暂存,再拉取更新分支。或切换分支并跟新代码,然后然切换后的分支指向最新代码节点。再将stash pop到切换的分支上,并提交(比较稳当)
(欢迎大佬多多指教)

你可能感兴趣的:(Git,git)