compdef _git gb=git-branch
alias gba='git branch -a'
compdef _git gba=git-branch
+alias gbm='git branch --merged'
+alias gbdm='git branch --merged | grep -ve "\*" -e "master" | xargs -n 1 git branch -d'
alias gcount='git shortlog -sn'
compdef gcount=git
alias gcl='git config --list'