feat(git-aliases): add checkout with username (fixes #1712) (#1732)

* feat(git-aliases): add checkout with username

this can be useful for creating a branch with a common prefix

* fix(git-alais): change quotes
pull/1737/head
Ron Green 2020-12-13 22:58:01 +02:00 committed by GitHub
parent 3019dc331d
commit 4dfd8bcc42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -65,6 +65,7 @@ alias gco='git checkout'
alias gcom='git checkout master' alias gcom='git checkout master'
alias gcb='git checkout -b' alias gcb='git checkout -b'
alias gcob='git checkout -b' alias gcob='git checkout -b'
alias gcobu='git checkout -b ${USER}/'
alias gct='git checkout --track' alias gct='git checkout --track'
alias gcpd='git checkout master; git pull; git branch -D' alias gcpd='git checkout master; git pull; git branch -D'
alias gexport='git archive --format zip --output' alias gexport='git archive --format zip --output'