mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-05-01 04:30:37 +02:00
Fix git push upstream
The option to send the branch to the upstream is -u or --set-upstream. Using git push upstream will try to send a branch named upstream to origin.
This commit is contained in:
parent
67dad45b38
commit
8a7c7f16dc
1 changed files with 1 additions and 1 deletions
|
|
@ -190,7 +190,7 @@ alias gp='git push'
|
|||
alias gpd='git push --dry-run'
|
||||
alias gpoat='git push origin --all && git push origin --tags'
|
||||
compdef _git gpoat=git-push
|
||||
alias gpu='git push upstream'
|
||||
alias gpu='git push -u'
|
||||
alias gpv='git push -v'
|
||||
|
||||
alias gr='git remote'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue