This is a pipeline on branch frontend over the last two weeks.

| Stash@{3} is all code since Stash@{1} (excluding the two tiny commits)
| Tiny Commit
| Tiny commit
| Huge bulk commit two weeks ago, now rebased and moved to Stash@{1}

My working tree is currently clean.
Stash@{1} is the contents from a bulk commit of general development code two weeks ago (this should have been stashed in the first place). This commit was undone and moved to stash.
Stash@{3} is the newest work on that tree since Stash@{1} (minus a couple of changes that have been committed).

I need to combine these two stashes together in my working tree so I can make a number of commits from this huge pool of work.

I ran git stash apply stash@{1} then I tried:

git stash apply stash@{3}
git stash show -p | git stash apply stash@{3}

but I get 'dirty working tree' in both cases. How can I merge this work together? Because stash@{3} is newer, I want it to supersede stash@{1} wherever there are conflicts.

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

You can only apply a stash to a clean working tree, so, first, ensure there are no modified files in git status, if there are, commit them. Then do:

git stash apply stash@{1}
git commit -a
# Enter your commit message
git stash apply stash@{3}

Then you can either make a new commit, or amend the previous one to combine them. You may need to resolve merge conflicts after each apply.

Also, if you ever decide to use git stash pop rather than apply, note that stash@{3} would become stash@{2} since the first one was popped off.

link|improve this answer
The two stashes are large and contain a lot of overlapping work, which is why I wanted to avoid the commits. Is it possible to just combine them in the working tree, or am I forced to commit these large chunks and then combine 2 crappy commits and split them into ~10 good commits in vim? – sscirrus Feb 4 at 19:45
The other thing is: I don't want to commit all this code. Significant chunks of it are still for development-only. – sscirrus Feb 4 at 19:48
1  
What's the difference between combining them in the working tree and amending? Or doing a git reset HEAD^ after the second stash is applied? You cannot apply a stash on a dirty working tree, so you must commit before applying one, but that doesn't mean you can't undo that commit after you've applied. – Andrew Marshall Feb 4 at 19:50
feedback

A better way is to just use git stash show stask@{whatever} > stash-{whatever}.diff and then use git apply for each one.

link|improve this answer
feedback

I had a similar problem and solved it like this.

Use git stash pop to apply one of the stashes. Then create a patch of this stash with git diff -p > ../stash.diff. You can then reset your working tree (or stash the changes again), and pop the other stash with git stash pop stash@{1}. If you apply your patch at this moment you can 'merge' the two different stashes.

You'll probably have some conflicts to resolve. If all goes well you can then drop the stashed changes.

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.