- 如果已经commit 了修改的代码到本地,需要撤回本地commit
撤回本地commit 命令为 : git reset --soft HEAD~1 其中最后一个1表示撤回最近的1次commit ;如果本地提交了2次, 执行 git reset --soft HEAD~2
再重新commit -m “***”;
标签:reset,HEAD,git,提交,撤回,常见问题,本地,commit From: https://blog.51cto.com/u_9911196/5996875
撤回本地commit 命令为 : git reset --soft HEAD~1 其中最后一个1表示撤回最近的1次commit ;如果本地提交了2次, 执行 git reset --soft HEAD~2
再重新commit -m “***”;
标签:reset,HEAD,git,提交,撤回,常见问题,本地,commit From: https://blog.51cto.com/u_9911196/5996875