Header Ads Widget

All about Git - "Git Stash" Part - II

In this post, I am going to discuss on a very powerful command "git stash". It is a very powerful command and that is why I want to dedicate a single blogpost discussing only about this important command.

WHAT IS GIT STASH:
This command will temporarily shelve the changes you've made to your working copy so that you can work o something else, and then come back and re-apply those changes at later point in time.

HOW TO STASH YOUR WORK:
The command git stash takes the uncommitted changes (both staged and unstaged) and saves them away for later use, thus reverting them from your working copy.
For example, I have two files "test.txt" and "NewOne.txt". Out of these two files, "test.txt" is staged and ready to be committed whereas the file "NewOne.txt" is yet to be staged.
So if I issue the command git status, below is the result -

Now if I issue the command git stash, let's see what happens -
So if I open the file, I will notice that all my changes to these two files are gone. But where? How can I get those changes back? So many questions!! :-) I will come into each of these questions slowly.

One important point to tell here is that stash is local to your Git repository; stashes are not transferred to the server when you push.

HOW TO RE-APPLY THE STASHED CHANGES:
One can re-apply the stashed changes by using the command git stash pop.
So basically popping the stash means removes the changes from the stash and re-applying then back to your working directory. That is why you see the two files back again in the status "Ready to be staged" after git stash pop done.

There is another command which will re-apply the stash to the working directory, but now delete the changes from stash, This is useful when you want to re-apply the same stash into multiple branches.
The command is:  git stash apply

Note - There is a very important point about stash. Git will not stash changes that are untracked or marked in the ignored file. By untracked, I wanted to mean if the file is not added by using the command git add before. For that you need to use -u option  to include the untracked files during stashing operation. The command is: git stash -u

AWESOME, BUT HOW I WILL MANAGE MULTIPLE STASHES:
You can run git stash multiple times to create multiple stashes and finally run git stash list will tell you all the stashes you have created.
If see the above picture, I have issued the command git stash twice. After that when I issued the command git stash list, it provided me two stashes - stash@{0} and stash@{1}

To give a more meaningful name of the stash, you can add your comments while doing the stash (The command is: git stash save "YOUR COMMENT") and then git stash list will show you the comment against the stash. See the screenshot below -

By default git stash pop will always re-apply the most recent created stash i.e. stash@{0}. If you want to stash something else, you need to provide the stash identifier as an argument like -
git stash pop stash@{3}

HOW TO VIEW STASH DIFFS:
You can view the summary of a stash by - git stash show.

To get the full details/diffs pas the parameter -p like below -

OK GREAT, BUT CAN I DO PARTIAL STASH?
Yes, you can do partial stash as well by passing the parameter -p with the command git stash. See the below screenshot -
The options which you can choose for partial stash are -

CREATE A BRANCH FROM STASH:
You can create a branch from a stash by below command -
This is required when your branch changed a lot and re-applying your stashes can bring conflicts. In  this scenario, you will prefer to create a branch from your stash and there apply your changes.

FINALLY, CAN I  CLEAR STASH?
Yes, you can clear stash by issuing the command git stash drop stash@{3}. This command will drop only stash@{3}. But if you want to delete all the stashes, then the command is: git stash clear.

I hope you have idea with git stash now. Please feel free to provide your feedback. Thanks.

To learn more, here are the links -

Post a Comment

0 Comments