撤销操作
在任何一个阶段,你都有可能想要撤消某些操作。 这里,我们将会学习几个撤消你所做修改的基本工具。 注意,有些撤消操作是不可逆的。 这是在使用 Git 的过程中,会因为操作失误而导致之前的工作丢失的少有的几个地方之一。
有时候我们提交完了才发现漏掉了几个文件没有添加,或者提交信息写错了。 此时,可以运行带有 --amend
选项的提交命令来重新提交:
work@MacintoshdeMacBook-Pro-2:~/Git$ git add mytest
work@MacintoshdeMacBook-Pro-2:~/Git$ git commit -m 'initial commit'
[master 94feba9] initial commit
1 file changed, 1 insertion(+)
work@MacintoshdeMacBook-Pro-2:~/Git$ git add mytest2
work@MacintoshdeMacBook-Pro-2:~/Git$ git commit --amend
[master 741179c] initial commit
Date: Fri Oct 9 16:12:54 2020 +0800
2 files changed, 2 insertions(+)
取消暂存的文件
接下来的两个小节演示如何操作暂存区和工作目录中已修改的文件。 这些命令在修改文件状态的同时,也会提示如何撤消操作。 例如,你已经修改了两个文件并且想要将它们作为两次独立的修改提交, 但是却意外地输入 git add *
暂存了它们两个。如何只取消暂存两个中的一个呢?git status
命令提示了你:
work@MacintoshdeMacBook-Pro-2:~/Git$ git add *
work@MacintoshdeMacBook-Pro-2:~/Git$ git status
On branch master
Your branch is up to date with 'origin/master'.
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
new file: README
modified: mytest
Changes not staged for commit:
(use "git add/rm <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
deleted: README.md
work@MacintoshdeMacBook-Pro-2:~/Git$ git reset HEAD mytest
Unstaged changes after reset:
D README.md
M mytest
work@MacintoshdeMacBook-Pro-2:~/Git$ git status
On branch master
Your branch is up to date with 'origin/master'.
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
new file: README
Changes not staged for commit:
(use "git add/rm <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
deleted: README.md
modified: mytest 2 files changed, 2 insertions(+)
到目前为止这个神奇的调用就是你需要对git reset
命令了解的全部。
撤消对文件的修改
如果你并不想保留对 CONTRIBUTING.md
文件的修改怎么办? 你该如何方便地撤消修改——将它还原成上次提交时的样子(或者刚克隆完的样子,或者刚把它放入工作目录时的样子)? 幸运的是,git status
也告诉了你应该如何做。 在最后一个例子中,未暂存区域是这样:
work@MacintoshdeMacBook-Pro-2:~/Git$ git checkout -- mytest
work@MacintoshdeMacBook-Pro-2:~/Git$ git status
On branch master
Your branch is up to date with 'origin/master'.
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
new file: README
Changes not staged for commit:
(use "git add/rm <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
deleted: README.md modified: mytest 2 files changed, 2 insertions(+)
可以看到那些修改已经被撤消了。
记住,在 Git 中任何 已提交 的东西几乎总是可以恢复的。 甚至那些被删除的分支中的提交或使用 --amend 选项覆盖的提交也可以恢复
网友评论