Add alias to list all git repos under working directory

This commit is contained in:
kalentia 2016-03-31 01:33:01 -04:00
parent c4582777fc
commit 76f8c07ea7

View File

@ -151,6 +151,7 @@ alias glgp='git log --stat -p'
alias glgg='git log --graph'
alias glgga='git log --graph --decorate --all'
alias glgm='git log --graph --max-count=10'
alias glist='find $PWD -type d -name .git | xargs -n 1 dirname'
alias glo='git log --oneline --decorate'
alias glol="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
alias glola="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --all"