在最后一次提交之后,我在工作副本中修改了一堆文件,但我想撤消对其中一个文件的更改,就像将其重置为与最近提交的状态相同.
但是,我只想撤消单独一个文件的工作副本更改,而不是其它任何内容.
我怎么做?
您可以使用
git checkout -- file
您可以在没有--
(如nimrodm建议)的情况下执行此操作,但如果文件名看起来像分支或标记(或其他修订标识符),则可能会混淆,因此使用--
最佳.
您还可以查看文件的特定版本:
git checkout v1.2.3 -- file # tag v1.2.3 git checkout stable -- file # stable branch git checkout origin/master -- file # upstream master git checkout HEAD -- file # the version from the most recent commit git checkout HEAD^ -- file # the version before the most recent commit
只是用
git checkout filename
这将使用当前分支中的最新版本替换filename.
警告:您的更改将被丢弃 - 不保留备份.
git checkout
我今天使用了这个,因为我意识到当我升级到drupal 6.10时,我的favicon已被覆盖了几次提交,所以我不得不把它取回来.这是我做的:
git checkout 088ecd favicon.ico
如果您的文件已经暂存(当您在编辑文件后执行git add等操作时)会取消暂停您的更改.
使用
git reset HEAD
然后
git checkout
如果尚未上演,请使用
git checkout
如果您只想撤消先前提交对该文件的更改,您可以尝试这样做:
git checkout branchname^ filename
这将检出上次提交之前的文件.如果您想再提交一些提交,请使用branchname~n
表示法.
我通过git bash完成了:
(use "git checkout --
Git状态.[所以我们看到一个文件被修改过了.]
git checkout - index.html [我在index.html文件中已更改:
git status [现在删除了那些更改]
我总是对此感到困惑,所以这里有一个提醒测试用例; 假设我们有这个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 status
:
$ git status On branch master Changes not staged for commit: (use "git add..." to update what will be committed) (use "git checkout -- ..." to discard changes in working directory) modified: b.txt no changes added to commit (use "git add" and/or "git commit -a")
如果从这一点开始,git checkout
结果如下:
$ git checkout HEAD -- b.txt $ git status On branch master nothing to commit, working directory clean
如果我们这样做git reset
,结果是:
$ 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..." to update what will be committed) (use "git checkout -- ..." 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 status
此时是:
$ git status On branch master Changes to be committed: (use "git reset HEAD..." to unstage) modified: b.txt
如果从这一点开始,git checkout
结果如下:
$ git checkout HEAD -- b.txt $ git status On branch master nothing to commit, working directory clean
如果我们这样做git reset
,结果是:
$ 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..." to update what will be committed) (use "git checkout -- ..." 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 checkout -- file
通过列出每个文件的位置(以空格分隔),对每个文件应用相同的命令(),如下所示:
git checkout -- name1/name2/fileOne.ext nameA/subFolder/fileTwo.ext
请注意name1 / name2 / fileOne.ext之间的空间nameA / subFolder / fileTwo.ext
对于同一文件夹中的多个文件:
如果您碰巧需要放弃某个目录中所有文件的更改,请使用git checkout,如下所示:
git checkout -- name1/name2/*
上面的星号具有撤消name1 / name2下该位置的所有文件的技巧。
并且,类似地,以下操作可以撤消多个文件夹的所有文件中的更改:
git checkout -- name1/name2/* nameA/subFolder/*
再次注意上面的name1 / name2 / * nameA / subFolder / *之间的空格。
注意:name1,name2,nameA,subFolder-所有这些示例文件夹名称均表示相关文件可能所在的文件夹或软件包。
我使用SHA id恢复我的文件,我做的是什么 git checkout