Git add all but one file to commit
This article explains how to add all files to commit while excluding selected files. This comes in handy when you have many files to include in a commit and must leave out one file.
Instead of adding files one at a time, you can follow these simple steps.
Add all but one file to commit
Take a look at the following example. Suppose we have more than twenty modified files, how can we add all but one?
Let's say we want to exclude requirements.txt file from indexing . How would we go about this?
We can use multiple commands to exclude our requirements.txt file when staging. These are:
Use git reset command
When you use the git reset command, you must add all files to the index and then unstage the required files.
grammar:
# Start by staging all files
$ git add .
# To exclude a file
$ git reset -- path/to/file
# To exclude a folder
$ git reset -- path/to/folder/*
In our case, we will add all the files and unstage the requirements.txt file as shown in the following image.
$ git add .
This will stage all files. To unstage the requirements.txt file we will run:
$ git reset -- path/to/requirements.txt
This command should unstage our requirements.txt file.
Using Exclude Path Specifications
Git versions 1.9.0 and later allow us to remove one or more paths when adding files to be committed. This can be :(exclude) pathspec
achieved with , which can also be written as :!
or :^
.
Here is an example.
$ git add --all -- ':!path/to/requirements.txt'
Exclude a folder
$ git add --all -- ':!path/to/folder/*'
Temporarily exclude files from tracing
We can temporarily exclude our requirements.txt file from being tracked as shown in the image below.
$ git update-index --assume-unchanged path/to/requirements.txt
Git will exclude our requirements.txt file
every time we run the git add command. To list all files marked with , we would run:--assume-unchanged
$ git ls-files -v | grep "^h"
To remove our files from the exclusion list we would run:
$ git update-index --no-assume-unchanged path/to/requirements.txt
In short, there are several ways to add all but one file to the index. As we discussed, temporarily excluding a file from tracking is the cleanest and most efficient.
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
Moving commits to another branch in Git
Publish Date:2025/04/01 Views:200 Category:Git
-
Git is a very useful and powerful tool in the modern software world. Many types of files and codes can be stored through branches and commits in Git. Branches are a different concept depending on the version control system you use. Many dev
Git push using SSH keys
Publish Date:2025/04/01 Views:94 Category:Git
-
SSH stands for Secure Shell. It is the key that provides us with the credentials to access the SSH network protocol. It provides access to remote servers between engines on an unsecured open network. It is used for transferring data, files,
Delete commits but keep changes in Git
Publish Date:2025/04/01 Views:179 Category:Git
-
This article outlines the steps necessary to undo a Git commit while preserving the changes introduced by the same commit. We'll cover two commands we can use that have the same effect. Without further ado, let’s jump right in. Remove com
Different ways to commit untracked files in Git
Publish Date:2025/04/01 Views:198 Category:Git
-
This article discusses the different methods we can use to commit untracked files in Git. If you introduce new files in your project in Git, these files will fall under the category of untracked files. With respect to the Git version contro
Use Git Prune command to clean up Git repository
Publish Date:2025/04/01 Views:73 Category:Git
-
In this article, we will discuss git prune the command and its uses. We know that Git is very careful with our data. When we delete data like commits, Git doesn't easily lose them. This can lead to stale data piling up in our machines. This
Git diff shows diff details of uncommitted changes
Publish Date:2025/03/31 Views:105 Category:Git
-
This article outlines how we can get diff details of uncommitted work in Git. We use the git diff command to show the differences between various Git references, such as commits, the index, and the working tree. We can use this command to d
Staging area in Git
Publish Date:2025/03/31 Views:152 Category:Git
-
In this article, we will learn about the staging area in Git . Git is a version control system that maintains a history of changes made to a project directory. Git uses commits to track changes. Git has three internal management systems, on
Add all files in a folder to commit in Git
Publish Date:2025/03/31 Views:159 Category:Git
-
This article will discuss the necessary steps to add all of your files into one folder for submission. If you have a folder with a dozen files, adding the files one by one can be tedious. Fortunately, Git allows us to add all the contents o
Meaning of Fetch_Head in Git
Publish Date:2025/03/31 Views:64 Category:Git
-
This article defines Fetch_HEAD in Git . This reference is an integral part of the git pull command and is important when merging changes from a remote repository into a local repository or branch. If you're not sure what Fetch_Head means,