在最后一次提交后,我修改了工作副本中的一堆文件,但我想撤消对其中一个文件的更改,如将其重置为与最近一次提交相同的状态。
然而,我只想撤消仅对该文件的工作副本更改,而不做其他更改。
我该怎么做?
在最后一次提交后,我修改了工作副本中的一堆文件,但我想撤消对其中一个文件的更改,如将其重置为与最近一次提交相同的状态。
然而,我只想撤消仅对该文件的工作副本更改,而不做其他更改。
我该怎么做?
当前回答
git checkout <commit> <filename>
我今天使用这个是因为我意识到我的收藏夹在几次提交之前被覆盖了,当我升级到drupal 6.10时,所以我不得不把它拿回来。以下是我所做的:
git checkout 088ecd favicon.ico
其他回答
git还原文件
请参阅此重复答案(确保向下滚动到2020更新):https://stackoverflow.com/a/31281748/12763497
如果您想撤消对该文件的上一次提交更改,可以尝试以下操作:
git checkout branchname^ filename
这将按上次提交前的状态签出文件。如果您想再提交几次,请使用branchname~n表示法。
我总是对此感到困惑,所以这里有一个提醒测试用例;假设我们有一个bash脚本来测试git:
set -x
rm -rf test
mkdir test
cd test
git init
git config user.name test
git config user.email test@test.com
echo 1 > a.txt
echo 1 > b.txt
git add *
git commit -m "initial commit"
echo 2 >> b.txt
git add b.txt
git commit -m "second commit"
echo 3 >> b.txt
此时,更改不会在缓存中暂存,因此git状态为:
$ git status
On branch master
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: b.txt
no changes added to commit (use "git add" and/or "git commit -a")
如果从这一点开始,我们执行git结账,结果是:
$ git checkout HEAD -- b.txt
$ git status
On branch master
nothing to commit, working directory clean
如果我们改为git重置,结果是:
$ git reset HEAD -- b.txt
Unstaged changes after reset:
M b.txt
$ git status
On branch master
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: b.txt
no changes added to commit (use "git add" and/or "git commit -a")
因此,在这种情况下,如果更改未暂存,git reset不会产生任何影响,而git checkout会覆盖更改。
现在,让我们假设上面脚本的最后一个更改是暂存/缓存的,也就是说我们在最后还做了git add b.txt。
在这种情况下,此时的git状态为:
$ git status
On branch master
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
modified: b.txt
如果从这一点开始,我们执行git结账,结果是:
$ git checkout HEAD -- b.txt
$ git status
On branch master
nothing to commit, working directory clean
如果我们改为git重置,结果是:
$ git reset HEAD -- b.txt
Unstaged changes after reset:
M b.txt
$ git status
On branch master
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: b.txt
no changes added to commit (use "git add" and/or "git commit -a")
因此,在这种情况下-如果更改是暂存的,git reset基本上会将暂存的更改转换为未暂存的更改-而git checkout将完全覆盖更改。
如果已经提交,则可以还原文件的更改并再次提交,然后用上次提交来压缩新的提交。
我通过gitbash完成了:
(使用“gitcheckout--<file>…”放弃工作目录中的更改)
Git状态。[所以我们看到一个文件被修改了。]git checkout--index.html[我已在index.html文件中更改:git状态[现在这些更改已删除]