Git 删除未提交的更改
本文将指导你如何撤消我们对本地仓库所做的未提交更改。
使用功能时,我们可能首先创建新文件,向现有文件添加更改,然后删除一些文件。最终,我们意识到这一切都错了,需要回到之前的提交。我们应该做什么?
$ echo 'Add new implementation' > feature.txt
$ echo 'Enhance exising feature' >> file.txt
$ git add file.txt
$ rm deprecated_feature.txt
$ git status
On branch main
Changes to be committed:
(use "git restore --staged <file>..." to unstage)
modified: file.txt
Changes not staged for commit:
(use "git add/rm <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
deleted: deprecated_feature.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
feature.txt
我们有几种方法来完成它。
使用 git checkout
删除 Git 中未提交的更改
此命令将恢复跟踪文件的未提交更改。被跟踪的文件是 git 知道的文件,通常是在被 git add
添加之后
$ git checkout .
Updated 2 paths from the index
$ git status
On branch main
Untracked files:
(use "git add <file>..." to include in what will be committed)
feature.txt
nothing added to commit but untracked files present (use "git add" to track)
请注意,如果文件已经通过 git add
添加到暂存区,git checkout
将不起作用。
$ echo 'Enhance exising feature' >> file.txt
$ git add file.txt
$ git checkout file.txt
Updated 0 paths from the index
$ git status
On branch main
Changes to be committed:
(use "git restore --staged <file>..." to unstage)
modified: file.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
feature.txt
在上面的示例中,对 file.txt
的更改不会恢复,因为该文件位于暂存区域中。
使用 git reset
删除 Git 中未提交的更改
要删除暂存区中未提交的更改,我们需要采取以下步骤。
-
使用
git reset
从暂存区取消暂存文件。 -
使用
git checkout
撤消更改。
$ git reset file.txt
Unstaged changes after reset:
M file.txt
$ git checkout file.txt
Updated 1 path from the index
$ git status
On branch main
Untracked files:
(use "git add <file>..." to include in what will be committed)
feature.txt
nothing added to commit but untracked files present (use "git add" to track)
使用 git reset
删除未提交更改的另一种方法是使用选项 --hard
和参数 HEAD
。
$ git reset --hard HEAD
HEAD is now at 1e087f5 Make some change to file.txt
$ git status
On branch main
Untracked files:
(use "git add <file>..." to include in what will be committed)
feature.txt
nothing added to commit but untracked files present (use "git add" to track)
-
--hard
选项指定 Git 抛出当前状态和最后一个参数中的提交之间的所有更改。出于这个原因,这个命令被认为是危险的,应该在你运行git status
检查工作文件后使用。 -
最新提交的
HEAD
别名。
使用 git stash
和 git stash
删除 Git 中未提交的更改
git checkout
和 git reset
的缺点是它们无法删除未跟踪的文件。feature.txt
在执行这些命令后仍然存在。
考虑第一个例子。
$ echo 'Add new implementation' > feature.txt
$ echo 'Enhance exising feature' >> file.txt
$ git add file.txt
$ rm deprecated_feature.txt
$ git status
On branch main
Changes to be committed:
(use "git restore --staged <file>..." to unstage)
modified: file.txt
Changes not staged for commit:
(use "git add/rm <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
deleted: deprecated_feature.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
feature.txt
删除所有未提交的更改,包括暂存文件、已跟踪但未暂存和未跟踪文件。我们将使用巧妙的方法 git stash
。
git stash
允许我们保存更改,但不需要 git commit
;它充当未提交文件的临时存储。
在向临时存储添加更改后,我们将告诉 Git 删除
这些存储。因此,所有未提交的更改都将消失。
$ git add .
$ git stash
Saved working directory and index state WIP on main: 16b9767 deprecated_feature.txt
$ git stash drop
Dropped refs/stash@{0} (aebeb2cbdcec917331f5793ef1238f5a525d29ec)
$ git status
On branch main
nothing to commit, working tree clean
总之,我们有几种方法可以删除未提交的更改:
-
git checkout
仅在文件不在暂存区时有用。 -
git reset
对暂存区中的更改很有用,但不能删除未跟踪文件的更改,需要与git checkout
结合使用。 -
git reset --hard HEAD
可能比上面的短,但有潜在的危险。 -
git stash
与git add .
可以删除所有内容,包括未跟踪的文件。
相关文章
如何在 Windows 系统中卸载 git
发布时间:2023/04/09 浏览次数:223 分类:Git
-
在这篇简短的文章中,我们将学习如何卸载 Git,以及如何在从个人计算机的目录中卸载 Git 后删除这些文件。
Git 如何重命名本地分支
发布时间:2023/04/09 浏览次数:64 分类:Git
-
大多数情况下,重命名分支机构是由于上述情况。 因此,在本教程中,我们将学习使用下面提到的技术更改本地 Git 分支的名称。
重命名 Git 存储库中的文件和目录
发布时间:2023/04/09 浏览次数:102 分类:Git
-
在本文中,我们将讨论 git 中的重命名过程。 我们使用 Git Rename 来更改工作目录中文件和文件夹的名称。
在 Git 中取消初始化存储库
发布时间:2023/04/09 浏览次数:187 分类:Git
-
本本文介绍如何通过 Git 命令行取消初始化 Git 存储库。git init 命令开发一个新的空置 Git 存储库。 它还用于重新初始化已经存在的 Git 存储库。
Git 仓库名称该如何命名
发布时间:2023/04/09 浏览次数:208 分类:Git
-
使用 Git 时,选择一个简洁且最新的存储库名称是一项艰巨的任务。本教程介绍了如何以独特的方式命名 Git 存储库。
配置 Git 以忽略文件模式更改
发布时间:2023/04/09 浏览次数:67 分类:Git
-
本文讨论配置 Git 以忽略文件更改 chmod 所需的步骤。 如果您更改 Git 正在跟踪的文件的权限,系统将在该文件中注册更改。
在 Git 中暂存已删除的文件
发布时间:2023/04/09 浏览次数:93 分类:Git
-
本文讨论了在 Git 中暂存已删除文件的必要步骤。我们知道 rm 命令可以删除一个文件,而无需将其从工作目录中移除。 那么,我们如何暂存已删除的文件以进行提交呢?
在 Git 中显示冲突文件
发布时间:2023/04/09 浏览次数:139 分类:Git
-
本文讨论在 Git 中列出冲突文件的最简单和最干净的方法。 我们可以使用 git status 命令,但这很麻烦,尤其是当我们有大量不冲突的文件时。