美文网首页Git使用心得
Git Reset三种模式

Git Reset三种模式

作者: ___TheOne___ | 来源:发表于2023-02-06 10:20 被阅读0次

文章参考:https://www.jianshu.com/p/c2ec5f06cf1a

image.png

总结
git reset --soft:撤销上一次commit,回到git add.的状态
git reset --mixed:撤销上一次commit和add,回到本地编辑的状态
git reset --hard:撤销上一次对文件的所有修改

开发中git reset --soft 使用比较多一些。

相关文章

网友评论

    本文标题:Git Reset三种模式

    本文链接:https://www.haomeiwen.com/subject/zvctkdtx.html