GIT commit 回退

2023-02-06  本文已影响0人  BitMonkey

git add .
git commit -m "xxx"

git log // 查看commit记录
commit id1 xxx1
commit id2 xxx2

从分支回退到暂存区

git reset --soft id2

从暂存区回退到工作区

Git同样告诉我们,用命令git reset HEAD <file>可以把暂存区的修改撤销掉(unstage),重新放回工作区:

上一篇 下一篇

猜你喜欢

热点阅读