I am trying to apply changes I stashed earlier with git stash pop and get the message:
Cannot apply to a dirty working tree, please stage your changes
Any suggestion on how to deal with that?
|
|
|
When I have to apply stashed changes to a dirty working copy, e.g. pop more than one changeset from the stash, I use the following:
Basically it creates a patch, pipes that to the apply command and if that succeeds without conflicts it drops the just applied stash item... I wonder why there is no |
|||||||||||||||
|
|
Either clean your working directory with git reset, commit the changes, or, if you want to stash the current changes, try:
$ git stash save "description of current changes"
$ git stash pop stash@{1}
This will stash the current changes, and then pop the second stash from the stash stack. |
|||||||||
|
|
You can do this without having to stash your current changes by exporting the stash you want as a patch file and manually applying it. For example, say you want to apply stash@{0} to a dirty tree:
If the second step fails, you will have to edit the Stash0.patch file to fix any errors and then try git apply again. |
|||||||||
|
|
I also found Mathias Leppich's solution to work great so I added an alias for it to my global .gitconfig
Now I can just type
which works great for me. (Your mileage may vary on this long alias name. But I like a dose of verbosity when it comes with bash completion.) |
||||
|
|
|
None of these answers actually work if you find yourself in this situation as I did today. Regardless of how many
|
|||||
|
|
I do it in this way:
and then (optionaly):
|
||||
|
|
You can apply a stash to a "dirty" tree by doing a |
||||
|
|
|
Mathias's solution is definitely the closest to a git stash pop --force (and really, c'mon Git devs, let's get this option already!) However, if you want to do the same thing using only git commands, you can:
In other words, make a commit (which we will never push) of your current changes. Now that your workspace is clean, pop your stash. Now, commit the stash changes as an amendment to your previous commit. Having done that you now have both sets of changes combined in a single commit ("Fixme"); just reset (--soft NOT --hard so nothing is actually lost) your checkout to "one before that commit", and now you have both sets of changes, completely uncommitted. **EDIT** I just realized it's actually even easier; you can completely skip step 3, so ...
(Commit current changes, pop off the stashed changes, reset that first commit to get both sets of changes combined in an uncommitted state.) |
||||
|
|
|
You have files that have been modified but not committed. Either:
or, if you want to save your changes:
|
|||||||
|
|
I had the same problem but git had zero changed files. Turns out I had a index.lock file that was lying around. Deleting it solved the problem. |
||||
|
|
|
I was unable to get most of these to work; for some reason it always thinks I have local changes to a file. I can't apply a stash, patches won't apply,
|
||||
|
|