I generally like the use of the pager in git, but for git stash the pager annoys me. When calling git stash list, I don\'t want to be shown the th
git stash
git stash list
Alternatively you can configure less to exit if there's less than one screen's worth of output:
less
export LESS='-F'
Or, verbosely:
export LESS='--quit-if-one-screen'
If you have colours in your git output, you'll probably also want to pass the -r flag:
-r
export LESS='-F -r'