如果不小心commit了一个不应该commit的修改,但是还没有push,想撤销那个commit。
步骤:
a) git log:获取commit id;
b) git reset --hard commit_id:即:git reset --hard d1a65e9ac9a7c4396206f0072b7fbc9138a26c1f
Posted 阑珊的测试成长之路
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git放弃本地commit,未push相关的知识,希望对你有一定的参考价值。
如果不小心commit了一个不应该commit的修改,但是还没有push,想撤销那个commit。
步骤:
a) git log:获取commit id;
b) git reset --hard commit_id:即:git reset --hard d1a65e9ac9a7c4396206f0072b7fbc9138a26c1f
以上是关于git放弃本地commit,未push的主要内容,如果未能解决你的问题,请参考以下文章
markdown 在`git push`之后在本地和远程撤消`git commit`
文件修改后git add+git commit提交一次,但是没有push到远程,接着继续修改文件,继续git add+git commit提交,并push到远程仓库。会发现本地仓库两次commit一次