Git stores specific files
This article will cover storing changes to only specific files in Git.
In Git, when we make some changes in our working tree, we may have some changes which may or may not be staged in our local repo.
We may now wish to save these changes for a while and work on a version of the file before these changes occurred.
So, for such purpose, we can use git stash push
the command to store the changes (ie) for later use.
Likewise, afterward, we can use git stash pop
the command to pick up these changes.
We may sometimes need to save or stash only the changes made to a specific file, rather than all the files changed in the repository working tree.
We will now illustrate this with an example.
In Git, git stash push
use
Suppose we have a file called in the working tree of our repository example.txt
. We made some changes to the file, and now we want to store those changes in Git for a while.
We might also have changes to other files in the working tree, but we don't want to hide them.
The command syntax to store a specific file in Git is git stash push <file>
.
Therefore, we do the following to store only example.txt
the changes made to the file.
$ git stash push example.txt
Saved working directory and index state On main: example.txt
HEAD is now at 8b3560b minor changes
Therefore, we only stash example.txt
changes to the file.
We can now list the storage entries and see our storage entry as shown below.
$ git stash list
stash@{0}: On main: example.txt
We can also add a specific message while storing as shown below.
$ git stash push -m "my example stash" example.txt
Saved working directory and index state On main: my example stash example.txt
HEAD is now at 8b3560b minor changes
We can list it again as follows.
$ git stash list
stash@{0}: On main: my example stash example.txt
Apart from this, we can also interactively store specific changes to the required files in Git.
To do this, we need to use options --patch 或 -p
along with git stash push
the commands.
So to do this in our example we do the following.
$ git stash push --patch
diff --git a/example.txt
index 7ab5ca4..a281fc6 100644
--- a/example.txt
+++ b/example.txt
@@ -4,9 +4,11 @@
some text
+new text
some other text
some text again
+second new text
Stash this hunk [y,n,q,a,d,/,s,e,?]? y
Saved working directory and index state WIP on main: 8b3560b minor changes
git stash
The command iterates over all changes in the repository's working tree and prompts you to select the changes you want to store.
Here, except for the problem Stash this hunk [y,n,q,a,d,/,s,e,?]? 之外,我们还输入了选项
, 存储
the example.txt file has changed.
We can enter the option n
to not store the current hunk
(changes) of the file.
For more information on git stash
and available options, see the article, git stash – Saving Changes .
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 Stash and Shelve in IntelliJ IDEA
Publish Date:2025/04/04 Views:111 Category:Git
-
git stash This article will distinguish between and when using IntelliJ IDEA git shelve . These two come into play when we want to switch between multiple tasks while working and return to them later. IntelliJ IDEA allows us to work on diff
Deleting a submodule in Git
Publish Date:2025/04/04 Views:191 Category:Git
-
This article explains how to delete a submodule in git. When developing software projects, we often use external frameworks and libraries required by our projects. These frameworks and libraries may be open source and stored in git reposito
Pull the latest Git submodule
Publish Date:2025/04/04 Views:112 Category:Git
-
In this article, we will introduce Git submodules. Under this, we will cover the following. Steps you can take to pull the latest submodule. How to set up submodules. How to push updates to a Git submodule. How to clone a submodule. Using G
Submodule updates in Git
Publish Date:2025/04/04 Views:133 Category:Git
-
Submodules are a way to keep a Git repository as a subdirectory in the current branch. Submodules are usually imported from third-party repositories. For example, a large project might have a submodule that contains a library. submodule Can
Listing submodules in Git
Publish Date:2025/04/04 Views:173 Category:Git
-
In this article, we will discuss Git submodules. We will cover what they are, the purpose of submodules, and the general workflow. Git submodules allow us to keep one repo as a subdirectory of another repo. In short, a submodule is a refere
Switch remote Git branch
Publish Date:2025/04/04 Views:182 Category:Git
-
This article will show you how to switch remote Git branches using checkout the command. The version control tool that allows you to support and manage variable versions of your application in a team of members is the Git version control to
Switch to a tag in Git
Publish Date:2025/04/04 Views:127 Category:Git
-
Git is one of the top version control systems used by teams around the world. Like other version control systems, Git also allows you to mark certain points in your repository's history as important. Typically, developers use this to mark r
Switching between branches in Git
Publish Date:2025/04/04 Views:64 Category:Git
-
In this article, we will learn how to switch branches in Git. Git is a distributed version control system and is an excellent tool for version control in a collaborative development environment. In Git, we create repositories, and in reposi
Undoing a checkout in Git
Publish Date:2025/04/04 Views:155 Category:Git
-
The command git checkout is used to update the repository to a specific point in the project's history. When we pass it a branch name, it switches to the branch we want to be currently at. This command is also used to undo git add the comma