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
This commit is contained in:
Ron Green
2020-12-13 22:58:01 +02:00
committed by GitHub
parent 3019dc331d
commit 4dfd8bcc42

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'