Added a killer git checkout alias

This commit is contained in:
Josh Sherman 2019-08-19 13:28:18 -05:00
parent 9ce2501153
commit 568de8d047
No known key found for this signature in database
GPG key ID: 55B058A80530EF22

View file

@ -39,7 +39,7 @@ alias gcam='git commit -a --amend'
alias gcb='git checkout -b'
alias gcl='git clone'
alias gcm='git checkout master'
alias gco='git checkout'
alias gco='git checkout $(git branch | fzf)' # Thanks, Brewer!
alias gd='git diff'
alias gf='git fetch'
alias gl='git pull origin $(git_branch)'