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

How can I stash only one of multiple changed files on my branch?

share|improve this question
3  
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
1  
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 '12 at 17:17
2  
I don't think @bukzor's accepted answer is a correct answer to the question as it was asked. git stash --keep-index does keep the index, but it stashes everything -- both in the index and out. – Raman Mar 17 at 19:25

7 Answers

up vote 253 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
share|improve this answer
5  
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
1  
This almost works well - it does not stash newly added files though. any solution for that? – Guy Apr 17 '12 at 4:54
5  
I find this approach to be much more simpler: stackoverflow.com/a/5506483/457268 – k0pernikus Sep 3 '12 at 14:52
4  
I'm not sure why this is being upvoted. Everyone must have a different expectation than me. The original post is asking "how do I stash just a portion of the uncommitted changes?" When I use git stash save -k, yes the index (green in git stat) is preserved, but the entire changeset (both green and red) goes into the stash. This violates the OP's request, "stash only some changes". I want to stash just some of the red (for future usage). – Pistos Dec 7 '12 at 17:01
3  
If you are more interested in the answer to the question posed by @Pistos (as I was), then look here: stackoverflow.com/questions/5506339/… – Raman Mar 17 at 19:22
show 9 more comments

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.

share|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
1  
@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
1  
@Kal: true, stackoverflow.com/a/13941132/6309 suggests a git reset (mixed) – VonC Mar 22 at 7:43
show 1 more comment

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)
share|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
really clever and "alternative" – kroe May 30 '12 at 13:30

Similar situation. Did commit and realized it's not ok.

git commit -a -m "message"
git log -p

Based on the answers this helped me.

# revert to previous state, keeping the files changed
git reset HEAD~
#make sure it's ok
git diff
git status
#revert the file we don't want to be within the commit
git checkout specs/nagios/nagios.spec
#make sure it's ok
git status
git diff
#now go ahead with commit
git commit -a -m "same|new message"
#eventually push tu remote
git push
share|improve this answer

In this situation I git add -p (interactive), git commit -m blah and then stash what's left if necessary.

share|improve this answer

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

share|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 '12 at 7:51

Try this:

git checkout master [file]

This will cancel the [file] changes and restore master branch version of the file.

Note: You can use any branch instead of master.

share|improve this answer
8  
This will completely nuke the file, it won't stash it. – Charlie Somerville Sep 9 '12 at 2:10
1  
please delete this answer it is wrong and if someone took your advice it would also have the added negative effect of completely and most likely irrecoverably deleting those updates – Will Apr 13 at 19:12
DO NOT DO THIS! This will discard your changes irreversibly. This is not what the OP asked for. – Frank Szczerba 12 hours ago

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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