1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 15:30:40 +01:00

Merge pull request #3014 from allister-lundberg/git_alias_gitbranchremote

New alias for git plugin: gbr == git branch --remote
This commit is contained in:
Robby Russell
2014-08-31 11:43:59 -07:00

View File

@@ -53,6 +53,7 @@ alias gb='git branch'
compdef _git gb=git-branch
alias gba='git branch -a'
compdef _git gba=git-branch
alias gbr='git branch --remote'
alias gcount='git shortlog -sn'
compdef gcount=git
alias gcl='git config --list'