git代码回滚
Posted thinkingandworkinghard
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git代码回滚相关的知识,希望对你有一定的参考价值。
1.如果git代码提交错误,git需要回滚
命令:
$ git reset --hard HEAD^ 回退到上个版本 $ git reset --hard commit_id 退到/进到 指定commit_id
2)推送到远端
$ git push origin HEAD --force
(如果是master分支,一般是没有权限的。因为master会受保护)
2)使用git reflog
打印你记录你的每一次操作记录
git reflog
输出:
c7edbfe [email protected]{0}: reset: moving to c7edbfefab1bdbef6cb60d2a7bb97aa80f022687
470e9c2 [email protected]{1}: reset: moving to 470e9c2
b45959e [email protected]{2}: revert: Revert "add img"
470e9c2 [email protected]{3}: reset: moving to 470e9c2
2c26183 [email protected]{4}: reset: moving to 2c26183
0f67bb7 [email protected]{5}: revert: Revert "add img"
找到你操作的id如:b45959e
,就可以回退到这个版本
$ git reset --hard b45959e
以上是关于git代码回滚的主要内容,如果未能解决你的问题,请参考以下文章