I'd like to do the following work flow:

  1. Add changes to the stage.
  2. Stash all the other changes that were not staged.
  3. Do some stuff with the things in stage (i.e. build, run tests, etc)
  4. Apply the stash.

Is there a way to do step 2?

Example

 echo "123" > foo
 git add foo # Assumes this is a git directory
 echo "456" >> foo
 git stash
 cat foo # Should yield 123
link|improve this question

Why not commit your changes after staging them? – Shin Oct 4 '11 at 16:08
1  
IIRC --keepindex does exactly that – sehe Oct 4 '11 at 16:11
Because if, say, the build fails I don't want to have a commit of this. I know I can delete the commit but I'd like to do this without a commit if possible. – Unapiedra Oct 4 '11 at 16:12
Sehe, thanks. I can confirm this works. Gee, I looked at the manual at linux.die.net/man/1/git-stash which is out of date. man git stash is much better. – Unapiedra Oct 4 '11 at 16:17
feedback

2 Answers

up vote 4 down vote accepted

git stash save has an option --keep-index that does exactly what you need.

So, run git stash save --keep-index.

link|improve this answer
No need for the save but thanks! – Unapiedra Oct 4 '11 at 16:19
True. I keep using save with git stash. Maybe it is the programmer in me insisting on honoring the symmetry with apply/pop. :) – vhallac Oct 4 '11 at 16:22
feedback
git stash save --keep-index

Also, Re:

Why not commit your changes after staging them? – Shin

A: Because you should always checkin tested code :) That means, you need to run the tests with only the changes you are about to commit

All this apart from the fact that of course, as an experienced programmer, you have the innate urge to test and review just those changes -- only partly kidding

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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