是否有 git 命令可以恢复工作树和索引中所有未提交的更改,并删除新创建的文件和文件夹?
14 回答
您可以运行以下两个命令:
# Revert changes to modified files.
git reset --hard
# Remove all untracked files and directories.
# '-f' is force, '-d' is remove directories.
git clean -fd
如果您只想还原当前工作目录中的更改,请使用
git checkout -- .
在此之前,您可以列出将要恢复的文件,而无需实际执行任何操作,只是为了检查会发生什么,使用:
git checkout --
使用 "git checkout -- ..." 丢弃工作目录中的更改
git checkout -- app/views/posts/index.html.erb
或者
git checkout -- *
删除对 git status 中未暂存文件所做的所有更改,例如
modified: app/controllers/posts.rb
modified: app/views/posts/index.html.erb
一种重要的方法是运行这两个命令:
git stash
这会将您的更改移动到存储区,使您回到 HEAD 状态git stash drop
这将删除在最后一个命令中创建的最新存储。
git clean -fd
没有帮助,新文件仍然存在。我所做的是完全删除所有工作树,然后
git reset --hard
有关添加清理选项的建议,请参阅“如何在 git 中清除我的本地工作目录? ”:-x
git clean -fdx
注意 -x
标志将删除 Git 忽略的所有文件,所以要小心(请参阅我参考的答案中的讨论)。
我认为您可以使用以下命令:git reset --hard
Git 2.23 引入git restore
了恢复工作树文件的命令。
https://git-scm.com/docs/git-restore
恢复当前目录中的所有文件
混帐恢复。
如果你想恢复所有 C 源文件以匹配索引中的版本,你可以这样做
git restore '*.c'
如果您有一个未提交的更改(仅在您的工作副本中)您希望恢复到最新提交中的副本,请执行以下操作:
git checkout filename
请注意,可能仍有一些文件似乎不会消失——它们可能未经编辑,但由于 CRLF / LF 更改,git 可能已将它们标记为正在编辑。看看你.gitattributes
最近是否做了一些改变。
就我而言,我已将 CRLF 设置添加到.gitattributes
文件中,因此所有文件都保留在“已修改文件”列表中。更改 .gitattributes 设置使它们消失。
您可以只使用以下 git 命令,它可以恢复您在存储库中所做的所有未提交的更改:
git checkout .
例子:
ABC@ABC-PC MINGW64 /c/xampp/htdocs/pod_admin (master)
$ git status
On branch master
Your branch is up-to-date with 'origin/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: application/controllers/Drivers.php
modified: application/views/drivers/add.php
modified: application/views/drivers/load_driver_info.php
modified: uploads/drivers/drivers.xlsx
no changes added to commit (use "git add" and/or "git commit -a")
ABC@ABC-PC MINGW64 /c/xampp/htdocs/pod_admin (master)
$ git checkout .
ABC@ABC-PC MINGW64 /c/xampp/htdocs/pod_admin (master)
$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
nothing to commit, working tree clean
来自 Git 帮助:
Changes to be committed:
(use "git restore --staged <file>..." to unstage)
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
一条安全而漫长的路:
git branch todelete
git checkout todelete
git add .
git commit -m "I did a bad thing, sorry"
git checkout develop
git branch -D todelete
采用:
git reset HEAD filepath
例如:
git reset HEAD om211/src/META-INF/persistence.xml
我通常使用这种效果很好的方式:
mv fold/file /tmp
git checkout fold/file