Add an alias for 'git checkout -b'

This commit is contained in:
ChaYoung You 2014-09-11 20:32:00 +09:00
commit 061711ef90
No known key found for this signature in database
GPG key ID: 46D5FC2EE79FBC2D

View file

@ -32,6 +32,8 @@ compdef _git gcmsg=git-commit
alias gco='git checkout'
compdef _git gco=git-checkout
alias gcm='git checkout master'
alias gcb='git checkout -b'
compdef _git gcb=git-checkout
alias gr='git remote'
compdef _git gr=git-remote
alias grv='git remote -v'