Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
How to stash only one file out of multiple files that have changed

How can I stash a specific file leaving the others currently modified out of the stash I am about to save?

For example, if git status gives me this:

younker % gst      
# On branch master
# Your branch is ahead of 'origin/master' by 1 commit.
#
# Changes not staged for commit:
#   (use "git add <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#
#   modified:   app/controllers/cart_controller.php
#   modified:   app/views/cart/welcome.thtml
#
no changes added to commit (use "git add" and/or "git commit -a")

and I only want to stash app/views/cart/welcome.thtml, how would I do that? Something like (but of course this does not work):

git stash save welcome_cart app/views/cart/welcome.thtml
share|improve this question

marked as duplicate by Paul Bellora, jeremyharris, goettschkes, Rudi Visser, Ansgar Wiechers Jan 29 at 22:35

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 149 down vote accepted

You can do that using git stash --patch and, use d to skip over the files that you don't want to stash, a when you encounter the one that you want to stash and then q to quit.

Not the most user-friendly approach, but it gets the work done if you really need it.

share|improve this answer
ahoj, you just saved my life – Karel Bílek Jun 17 '12 at 16:44
2  
The only thing this doesn't seem to do is include changes to binary filed. I edited some graphics, did the git stash --patch method and they were never listed. – Jeremy Ricketts Jun 18 '12 at 18:39
3  
Cumbersome, but works. I wish there was a quick way to stash only staged changes, and then have the changes go into the unstaged working tree when it's later popped. – James Johnston Sep 26 '12 at 14:42

I usually add to index changes I don't want to stash and then stash with --keep-index option.

git add app/controllers/cart_controller.php
git stash --keep-index
git reset

Last step is optional, but usually you want it. It removes changes from index.

share|improve this answer
This is much better than the accepted answer if you have a lot changes you don't want to wade through with the --patch option. – midpeter444 Dec 21 '12 at 15:36
1  
No, this puts everything into the stash, both staged and unstaged. The --keep-index just leaves the index alone after the stash is done. So this isn't a valid answer to the question, AFAICT. – Raman Mar 17 at 19:22

If you don't currently have any staged files, you can temporarily stage some files and then unstage them after.

For example, I wanted to revert all but one file so I did something like:

git add path/to/file/file.as //Add file I want to keep
git checkout -- *.as //revert all unstages .as files
git reset HEAD path/to/file/file.as
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.