I'm able to list git stashes by date with

git stash list --date=local

but how do I select a revision without getting

fatal: Needed a single revision
link|improve this question

66% accept rate
feedback

1 Answer

up vote 3 down vote accepted

You need to put quotation marks around the date:

git stash show -p stash@{Friday Smarch 13 13:13:13 2013}

won't work, while

git stash show -p stash@{"Friday Smarch 13 13:13:13 2013"}

works. (With the date given, it actually gave me the most recent stash, rather than saying it was invalid!)

link|improve this answer
2  
For future readers, this is just an issue of the shell requiring escaping of a single argument with embedded spaces. Either quoting the whole thing ("stash@{Friday Smarch 13 13:13:13 2013}") or individually escaping each space (stash@{Friday\ Smarch\ 13\ 13:13:13\ 2013}) would work just as well. – Greg Hewgill Jul 14 '10 at 6:22
feedback

Your Answer

 
or
required, but never shown

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