在 “Changes to be committed” 文字正下方,提示使用 git reset HEAD … 来取消暂存。 所以,我们可以这样来取消暂存 CONTRIBUTING.md 文件:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
$ git resetHEAD CONTRIBUTING.md Unstaged changes afterreset: M CONTRIBUTING.md $ git status On branch master Changes to be committed: (use"git reset HEAD <file>..."to unstage)
renamed: README.md -> README
Changes not staged forcommit: (use"git add <file>..."toupdate what will be committed) (use"git checkout -- <file>..."to discard changes in working directory)
如果你并不想保留对 CONTRIBUTING.md 文件的修改怎么办? 你该如何方便地撤消修改 - 将它还原成上次提交时的样子(或者刚克隆完的样子,或者刚把它放入工作目录时的样子)? 幸运的是,git status 也告诉了你应该如何做。 在最后一个例子中,未暂存区域是这样:
1 2 3 4 5
Changes not staged for commit: (use"git add <file>..."toupdate what will be committed) (use"git checkout -- <file>..."to discard changes in working directory)
modified: CONTRIBUTING.md
它非常清楚地告诉了你如何撤消之前所做的修改。 让我们来按照提示执行:
1 2 3 4 5 6 7
$ git checkout -- CONTRIBUTING.md $ git status On branch master Changes to be committed: (use"git reset HEAD <file>..."to unstage)
如果只是简单地从工作目录中手工删除文件,运行 git status 时就会在 “Changes not staged for commit” 部分(也就是 未暂存清单)看到:
1 2 3 4 5 6 7 8 9 10 11
$ rm PROJECTS.md $ git status On branch master Your branch is up-to-date with'origin/master'. Changes not staged forcommit: (use"git add/rm <file>..."toupdate what will be committed) (use"git checkout -- <file>..."to discard changes in working directory)
deleted: PROJECTS.md
no changes added tocommit (use"git add"and/or"git commit -a")
然后再运行 git rm 记录此次移除文件的操作:
1 2 3 4 5 6 7 8
$ git rm PROJECTS.md rm 'PROJECTS.md' $ git status On branch master Changes to be committed: (use"git reset HEAD <file>..."to unstage)
$ git log--pretty=format:"%h - %an, %ar : %s" ca82a6d - Scott Chacon, 6 years ago : changed theversionnumber 085bb3b - Scott Chacon, 6 years ago : removed unnecessary test a11bef0 - Scott Chacon, 6 years ago : first commit
$ git status On branch master Changes not staged for commit: (use"git add <file>..."toupdate what will be committed) (use"git checkout -- <file>..."to discard changes in working directory)
modified: CONTRIBUTING.md
no changes added tocommit (use"git add"and/or"git commit -a") $ git commit -a -m 'added new benchmarks' [master83e38c7] added new benchmarks 1filechanged, 5 insertions(+), 0 deletions(-)