Restore old git checkout alias

Loved the fzf piping, but too much muscle memory on my end for it. Went head
and added an "f*" alias instead, we'll see if that even ever gets used.
This commit is contained in:
Josh Sherman 2019-09-30 11:13:20 -05:00
parent 600e1adb8b
commit c44413549e
No known key found for this signature in database
GPG key ID: 55B058A80530EF22

View file

@ -39,7 +39,8 @@ alias gcam='git commit -a --amend'
alias gcb='git checkout -b'
alias gcl='git clone'
alias gcm='git checkout master'
alias gco='git checkout $(git branch | sed "s/\*//" | fzf)' # Thanks, @collinbrewer!
alias gco='git checkout'
alias fgco='git checkout $(git branch | sed "s/\*//" | fzf)'
alias gd='git diff'
alias gf='git fetch'
alias gl='git pull origin $(git_branch)'