]> git.phdru.name Git - git-scripts.git/blob - ls-stash
Feat: Split scripts into 3: run in one repo, recursive, in all
[git-scripts.git] / ls-stash
1 #! /bin/sh
2
3 d="`git rev-parse --show-toplevel`" &&
4
5 if [ -n "$d" ]; then
6    if [ -n "`git stash list`" ]; then echo "$d"; fi
7 fi