How can I stash only one file out of multiple files which are on my branch, is there a way to do so ?

Thanks.

link|improve this question

You could consider giving bukzor's answer the official "tick": his answer stackoverflow.com/a/8333163/6309 is much simpler and efficient than mine. – VonC Dec 14 '11 at 6:40
You did removed the accepted mark from my answer (which is fine by me), but didn't choose any other answer as the official one for you. Bukzor's answer isn't good enough? – VonC Dec 22 '11 at 8:07
I thought I had accepted the answer but it appears that i had not. Thanks for bringing it to my notice. – Rachel Jan 4 at 17:17
feedback

4 Answers

up vote 56 down vote accepted

This will stash everything that you haven't previously added. Just git add the things you want to keep, then run it.

git stash --keep-index

For example, if you want to split an old commit into more than one changeset, you can use this procedure:

  1. rebase -i <last good commit>
  2. Mark some changes as edit.
  3. git reset HEAD^
  4. git add <files you want to keep in this change>
  5. git stash --keep-index
  6. Fix things up as necessary. Don't forget to git add any changes.
  7. git commit
  8. git stash pop
  9. Repeat, from #2, as necessary.
  10. git rebase --continue
link|improve this answer
4  
that one is much more versatile, than the accepted answer! just adding that you should "get reset --soft" after such a stash to get your clear staging are back – chhh Dec 5 '11 at 12:15
I used this to split up some changes that were unrelated, using rebase -i, and it worked nicely. I added the files I wanted to work on, stash as above, fix things up as necessary, commit, stash pop, and repeat. – bukzor Dec 5 '11 at 15:50
yep, i've just noted that in order to get to the original state - which is a clear staging area and with only some select unstaged modifications one could softly reset the index to get (without committing anything like you did). nevermind, and thanks for the info! :) – chhh Dec 6 '11 at 22:09
Excellent alternative. +1. I have included it in my answer for more visibility. – VonC Dec 7 '11 at 17:20
I wasn't aware of this either. +1 from me. – eleotlecram Dec 8 '11 at 15:13
show 3 more comments
feedback

Since git is fundamentally about managing a all repository content and index (and not one or several files), git stash deals, not surprisingly, with the all working directory.

The original answer (below, June 2010) was about manually selecting what you want to stash.

Casebash comments:

This (the stash --patch original solution) is nice, but often I've modified a lot of files so using patch is annoying

bukzor's answer (upvoted, November 2011) suggests a more practical solution, based on
git add + git stash --keep-index.
Go see and upvote his answer, which should be the official one (instead of mine).

About that option, chhh points out an alternative workflow in the comments:

you should "git reset --soft" after such a stash to get your clear staging back:
In order to get to the original state - which is a clear staging area and with only some select un-staged modifications, one could softly reset the index to get (without committing anything like you - bukzor - did).


(Original answer June 2010: manual stash)

Yet, git stash save --patch could allows you to achieve the partial stashing you are after:

With --patch, you can interactively select hunks from in the diff between HEAD and the working tree to be stashed.
The stash entry is constructed such that its index state is the same as the index state of your repository, and its worktree contains only the changes you selected interactively. The selected changes are then rolled back from your worktree.

However that will save the full index (which may not be what you want since it might include other files already indexed), and a partial worktree (which could look like the one you want to stash).

git stash --patch --no-keep-index

might be a better fit.


If --patch doesn't work, a manual process might:

For one or several files, an intermediate solution would be to:

  • copy them outside the Git repo
    (Actually, eleotlecram proposes an interesting alternative)
  • git stash
  • copy them back
  • git stash # this time, only the files you want are stashed
  • git stash pop stash@{1} # re-apply all your files modifications
  • git checkout -- afile # reset the file to the HEAD content, before any local modifications

At the end of that rather cumbersome process, you will have only one or several files stashed.

link|improve this answer
This is nice, but often I've modified a lot of files so using patch is annoying – Casebash Nov 16 '11 at 2:03
@Casebash: Then see my answer, below. – bukzor Dec 7 '11 at 15:59
@VonC: It's good style to have just one answer per Answer. Also, copy-pasting others' answers into your own is bad manners. – bukzor Dec 12 '11 at 17:05
@bukzor: I am sorry if my edited answer seemed improper. My only intention was to give your answer more visibility. I have edited again my post, in order to make that intention clearer. – VonC Dec 12 '11 at 18:28
feedback

Since creating branches in Git is trivial you could just create a temporary branch and check the individual files into it.

link|improve this answer
You can't create a branch with unstaged edits. You can easily move all the edits to a new branch (stash/stash pop) but then you're back to square one: how do you test your branch with only some of those edits, without losing the others? – bukzor Dec 7 '11 at 16:01
I just created a branch with unstaged edits. – shangxiao Dec 15 '11 at 11:00
You can't switch branches if you have local changes. However, you can create a new branch and selectively add/commit files, and then create another branch and do the same recursively... then checkout the original branch and selectively merge back in. I just did it. It actually seems the natural way to do things, as you're essentially creating feature branches. – Iain Feb 17 at 7:51
feedback

The problem with VonC's `intermediate' solution of copying files to outside the Git repo is that you lose path information, which makes copying a bunch of files back later on somewhat of a hassle.

A find it easier to use tar (similar tools will probably do) instead of copy:

  • tar cvf /tmp/stash.tar path/to/some/file path/to/some/other/file (... etc.)
  • git checkout path/to/some/file path/to/some/other/file
  • git stash
  • tar xvf /tmp/stash.tar
  • etc. (see VonC's `intermediate' suggestion)
link|improve this answer
checkout -f scares me – bukzor Dec 7 '11 at 16:02
checkout -f is not needed, checkout (without -f) is enough, I've updated the answer. – eleotlecram Dec 8 '11 at 15:09
Interesting. +1. I have edited my answer to reference yours. – VonC Dec 12 '11 at 18:31
feedback

Your Answer

 
or
required, but never shown

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