Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

2 Answers

up vote 9 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.

share|improve this answer
3  
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

Not without popping and saving again.

share|improve this answer
1  
while seemingly inelegant this is the easiest solution – Kirby Aug 16 '12 at 15:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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