git遇到的已经提交到远程分支的代码需要回滚怎么办,
我先git reflog
然后git reset --hard 索引
到想要的版本,然后git push origin 远程分支名
但是报错
git push origin 远程分支名
。。。
error: failed to push some refs to 'ssh://git@xxx'
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.
hint: Updates were rejected because the tip of your current branch is behind
提示:更新被拒绝,因为您当前分支的尖端滞后
这个原因因为我reset,所以我的分支滞后了,
在不知道怎么办的时候,百度大法好:
https://www.cnblogs.com/gongchengshiwhl/p/13958667.html
git push origin v2 --force
强制提交
02f5888 (HEAD -> 远程分支名, origin/远程分支名) HEAD@{0}: commit: 更换注解
8d0cf4b HEAD@{1}: 。。。
87cc5a8 HEAD@{2}: 。。。
2a49b29 HEAD@{3}: 。。。
abfbcb7 HEAD@{4}: 。。。
8d0cf4b HEAD@{5}: 。。。
51d6cac HEAD@{6}: 。。。
8d0cf4b HEAD@{7}: commit: fix:修改bug
我要把我的远程分支提交到master上的时候发现commits就下面两个:
02f5888
8d0cf4b
而:
8d0cf4b HEAD@{1}: 。。。
87cc5a8 HEAD@{2}: 。。。
2a49b29 HEAD@{3}: 。。。
abfbcb7 HEAD@{4}: 。。。
8d0cf4b HEAD@{5}: 。。。
51d6cac HEAD@{6}: 。。。
这些都没有了
所以成功了