mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 22:00:08 +00:00
git: quote branch name in ggpull and ggpush (#7472)
This commit is contained in:
parent
6db298c57a
commit
3c16466a14
1 changed files with 2 additions and 2 deletions
|
@ -155,10 +155,10 @@ compdef _git ggu=git-checkout
|
||||||
alias ggpur='ggu'
|
alias ggpur='ggu'
|
||||||
compdef _git ggpur=git-checkout
|
compdef _git ggpur=git-checkout
|
||||||
|
|
||||||
alias ggpull='git pull origin $(git_current_branch)'
|
alias ggpull='git pull origin "$(git_current_branch)"'
|
||||||
compdef _git ggpull=git-checkout
|
compdef _git ggpull=git-checkout
|
||||||
|
|
||||||
alias ggpush='git push origin $(git_current_branch)'
|
alias ggpush='git push origin "$(git_current_branch)"'
|
||||||
compdef _git ggpush=git-checkout
|
compdef _git ggpush=git-checkout
|
||||||
|
|
||||||
alias ggsup='git branch --set-upstream-to=origin/$(git_current_branch)'
|
alias ggsup='git branch --set-upstream-to=origin/$(git_current_branch)'
|
||||||
|
|
Loading…
Reference in a new issue