I am able to stash a patch of changes by doing git stash save --patch name , which gets listed when I do git stash list.

Now how do I refer to this stash using the name?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Stashes are named using the usual reflog syntax like stash@{0} etc. which is what you see in git stash list. There is no concept of passing name to a stash. You are probably talking about the stash message ( which, you also see in git stash list )and you cannot refer a stash using its message ( of course )

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.