If I run
git format-patch -1 stash@{0}
git returns silently without creating any file. Why does this happen? How can I save a stash in a format compatible with git am?
|
feedback
|
|
This seems to be because the stash commit is represented as a merge (between its parent and the index state at the time), and If you say
then it will spit out patches between the stash and each parent. For illustration, this is what the stash looks like:
| |||
feedback
|
|
You could try
This will generate a patch file on your desktop for the latest patch and the original parent. Described in the documentation of git-stash under the show option | |||||
feedback
|
|
I can think of 2 ways. Solution 1: Create a branch from the stash. This kind of defeats the original purpose of the stash feature, which was to avoid having to create the separate branch. Solution 2: Add all changes to tracked files to the index before stashing. After stashing, run
which compares HEAD with the index (at the time the stash was created). I'm not sure why you can't just leave files unadded to the index and run
which seems like the same thing. There must be something special about the stash commit object. In any case, adding to the index will record the changes in the stash's 2nd parent (the index commit), bypassing the issues with the stash commit. Misc notes:
| ||||
|
feedback
|
stash@{0}instead,git stash listshows that as the name for me. Using just stash{0} returns an error about the revision not existing. I don't have an answer why it doesn't work though. – jonescb Jan 4 '11 at 17:381.6.6. – UncleZeiv Jan 4 '11 at 18:25