还没有push 时,撤销 commit 或 add 的文件
使用--soft 参数, 只撤销 commit
git reset --soft HEAD^
使用 --hard 参数,连add也撤销了(修改的文件内容也被撤销了)
git reset --hard HEAD^
-
参考:
https://blog.csdn.net/w_p_wyd/article/details/126028094
标签:git,--,hard,撤销,push,commit From: https://www.cnblogs.com/wutou/p/17483300.html