add alias for 'stash list'

This commit is contained in:
Tony Tang 2014-05-17 10:27:58 +08:00
commit cc11df98d7

View file

@ -92,6 +92,7 @@ alias gsts='git stash show --text'
alias gsta='git stash' alias gsta='git stash'
alias gstp='git stash pop' alias gstp='git stash pop'
alias gstd='git stash drop' alias gstd='git stash drop'
alias gstl='git stash list'
# Will cd into the top of the current repository # Will cd into the top of the current repository
# or submodule. # or submodule.
@ -157,6 +158,3 @@ alias gignore='git update-index --assume-unchanged'
alias gunignore='git update-index --no-assume-unchanged' alias gunignore='git update-index --no-assume-unchanged'
# list temporarily ignored files # list temporarily ignored files
alias gignored='git ls-files -v | grep "^[[:lower:]]"' alias gignored='git ls-files -v | grep "^[[:lower:]]"'