Git撤回最后一次提交的代码
@newblue • 4年55天前 • 525
git reset --soft HEAD~1
撤销你的提交,恢复到未提交状态。
git reset --hard HEAD~1
完全撤销关于这次提交里的所有改动。
git reset --hard <hash id>
撤销指定之后所有的提交修改结果。
@newblue • 4年55天前 • 525
git reset --soft HEAD~1
撤销你的提交,恢复到未提交状态。
git reset --hard HEAD~1
完全撤销关于这次提交里的所有改动。
git reset --hard <hash id>
撤销指定之后所有的提交修改结果。