On Mon, Oct 12, 2009 at 05:47:34PM +0200, Jef Driesen wrote:
Is it possible to make "git stash list" show more than 10 items?
Try "git stash list -30".
Stash listing is internally just "git log -g refs/stash", so you can
pass any formatting or limiting arguments you want there (see the git
log documentation for ideas). If no arguments are given, we pass "-10".
-Peff