I have a stash saved for the future that I want to give a meaningful name. While it's possible to pass a message as argument to git stash save, is there a way to add a message to an existing stash?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

You can directly edit the messages stored in .git/logs/refs/stash.

I know it's probably not ideal, but should work anyway.

link|improve this answer
2  
The fact that that seems to work is incredibly lucky: the message is also stored in the commit message (stashes are represented internally as commits), and you're of course not changing that. – Jefromi Nov 14 '11 at 19:22
It does work; thanks a lot – CharlesB Nov 15 '11 at 9:23
feedback

Not without popping and saving again.

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.