Staging deleted files in Git
This article discusses the necessary steps to stage deleted files in Git.
We know that the rm command can delete a file without removing it from the working directory. So, how do we stage the deleted files for commit?
Staging deleted files in Git
For a simpler context, let's simulate a situation where we need to stage a deleted file. To do this, we will navigate to our repository and delete one of the files.
We will run:
$ rm sample.php
Let's check our indexes:
$ git status
Newer Git versions allow us to stage deleted files using the git add command. Make sure you have Git 2 and newer.
You can check your version by running:
$ git version
git version 2.35.1.windows.2
We can continue to add files, as shown below:
$ git add sample.php
When checking our index, the sample.php file should be staged for submission. Let's check if this is the case.
Now the sample.php file we deleted is ready for submission.
In short, newer versions of Git allow us to stage deleted files for commit using git add
the command. Git treats it as a modified or added file.
For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.
Related Articles
Git 拉取和 Git 克隆的区别
Publish Date:2024/02/04 Views:223 Category:Git
-
这篇简短的文章将解决 git clone 和 git pull 的区别。本教程将讨论 git clone 和 git pull 命令之间的区别。
如何在 Windows 系统中卸载 git
Publish Date:2023/04/09 Views:878 Category:Git
-
在这篇简短的文章中,我们将学习如何卸载 Git,以及如何在从个人计算机的目录中卸载 Git 后删除这些文件。
如何检查 Git 的版本
Publish Date:2023/04/09 Views:270 Category:Git
-
在这篇检查Git最新版本的文章中,我们将学习如何在本地个人计算机或任何服务器上检查Git版本。
Git 如何重命名本地分支
Publish Date:2023/04/09 Views:121 Category:Git
-
大多数情况下,重命名分支机构是由于上述情况。 因此,在本教程中,我们将学习使用下面提到的技术更改本地 Git 分支的名称。
重命名 Git 存储库中的文件和目录
Publish Date:2023/04/09 Views:191 Category:Git
-
在本文中,我们将讨论 git 中的重命名过程。 我们使用 Git Rename 来更改工作目录中文件和文件夹的名称。
在 Git 中取消初始化存储库
Publish Date:2023/04/09 Views:365 Category:Git
-
本本文介绍如何通过 Git 命令行取消初始化 Git 存储库。git init 命令开发一个新的空置 Git 存储库。 它还用于重新初始化已经存在的 Git 存储库。
Git 仓库名称该如何命名
Publish Date:2023/04/09 Views:460 Category:Git
-
使用 Git 时,选择一个简洁且最新的存储库名称是一项艰巨的任务。本教程介绍了如何以独特的方式命名 Git 存储库。
配置 Git 以忽略文件模式更改
Publish Date:2023/04/09 Views:116 Category:Git
-
本文讨论配置 Git 以忽略文件更改 chmod 所需的步骤。 如果您更改 Git 正在跟踪的文件的权限,系统将在该文件中注册更改。