Is there a maximum number of git stashes, or can you have as many as you like?

I'm aware that

git stash list

doesn't list as many results as

git stash list --date=local

But does Linus Torvalds think that anyone with more than x stashes is an idiot who deserves to lose the old stashes?

link|improve this question

66% accept rate
1  
Um, what's Linus Torvalds' opinion got to do with anything? – Charles Bailey Jan 5 '11 at 1:20
1  
If you have a large number of stashes perhaps some of them should be named branches instead. – Adam Vandenberg Jan 5 '11 at 1:21
Are you sure you're not just seeing git's default behavior of adding $PAGER to anything with enough output to scroll the screen? – Ben Jackson Jan 5 '11 at 1:24
1  
@Charles a lot of git's design is based on the opinions of Linus Torvalds. – Laurence Gonsalves Jan 5 '11 at 1:36
@Laurence Gonsalves: Linux Torvalds didn't write git-stash, wasn't the maintainer of git when it was integrated into the git source tree and hasn't, to my knowledge, ever contributed to git-stash so I don't see how any opinions he may or may not have on its usage are relevant to its current behaviour. – Charles Bailey Jan 5 '11 at 1:58
show 2 more comments
feedback

2 Answers

up vote 7 down vote accepted

There is no hard limit to stashes. Stashes are simply implemented using the reflog of a specially-named ref called stash.

link|improve this answer
Does this mean they're liable to be deleted if you do git prune or git gc? – Andrew Grimm Jan 5 '11 at 2:31
Ya know, I'm not sure. In general, the reflog lasts for 90 days (or 30 days for unreachable commits). I would expect that git doesn't apply this limit to the stash, but I can't be certain. – Kevin Ballard Jan 5 '11 at 4:33
I just checked the source, it does indeed appear to handle the stash specially. – Kevin Ballard Jan 5 '11 at 4:33
feedback

Let's try:

$ du -sh .git; \
> for i in {1..10000}; do echo $i > README; git stash -q; done; \
> git gc -q; du -sh .git; time git stash list | wc -l
8.5M     .git
13M      .git        # space efficient
10000                # all there
real     0m0.212s    # listing 10,000 entries
$ echo foo > README; time git stash -q; time git stash pop -q
real     0m0.159s    # save still fast
real     0m0.146s    # pop still fast

I didn't test more, but I'd assume it'll still work the same for 100,000 or a million. So yes, the number of stashes really is unlimited.

Thanks Kevin for confirming that git gc won't clean out your stash.

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.