|
|
|
@ -1221,14 +1221,20 @@ _git_difftool ()
@@ -1221,14 +1221,20 @@ _git_difftool ()
|
|
|
|
|
__git_complete_revlist_file |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
__git_fetch_recurse_submodules="yes on-demand no" |
|
|
|
|
|
|
|
|
|
__git_fetch_options=" |
|
|
|
|
--quiet --verbose --append --upload-pack --force --keep --depth= |
|
|
|
|
--tags --no-tags --all --prune --dry-run |
|
|
|
|
--tags --no-tags --all --prune --dry-run --recurse-submodules= |
|
|
|
|
" |
|
|
|
|
|
|
|
|
|
_git_fetch () |
|
|
|
|
{ |
|
|
|
|
case "$cur" in |
|
|
|
|
--recurse-submodules=*) |
|
|
|
|
__gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}" |
|
|
|
|
return |
|
|
|
|
;; |
|
|
|
|
--*) |
|
|
|
|
__gitcomp "$__git_fetch_options" |
|
|
|
|
return |
|
|
|
@ -1577,6 +1583,10 @@ _git_pull ()
@@ -1577,6 +1583,10 @@ _git_pull ()
|
|
|
|
|
__git_complete_strategy && return |
|
|
|
|
|
|
|
|
|
case "$cur" in |
|
|
|
|
--recurse-submodules=*) |
|
|
|
|
__gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}" |
|
|
|
|
return |
|
|
|
|
;; |
|
|
|
|
--*) |
|
|
|
|
__gitcomp " |
|
|
|
|
--rebase --no-rebase |
|
|
|
@ -1589,6 +1599,8 @@ _git_pull ()
@@ -1589,6 +1599,8 @@ _git_pull ()
|
|
|
|
|
__git_complete_remote_or_refspec |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
__git_push_recurse_submodules="check on-demand" |
|
|
|
|
|
|
|
|
|
_git_push () |
|
|
|
|
{ |
|
|
|
|
case "$prev" in |
|
|
|
@ -1601,10 +1613,15 @@ _git_push ()
@@ -1601,10 +1613,15 @@ _git_push ()
|
|
|
|
|
__gitcomp_nl "$(__git_remotes)" "" "${cur##--repo=}" |
|
|
|
|
return |
|
|
|
|
;; |
|
|
|
|
--recurse-submodules=*) |
|
|
|
|
__gitcomp "$__git_push_recurse_submodules" "" "${cur##--recurse-submodules=}" |
|
|
|
|
return |
|
|
|
|
;; |
|
|
|
|
--*) |
|
|
|
|
__gitcomp " |
|
|
|
|
--all --mirror --tags --dry-run --force --verbose |
|
|
|
|
--receive-pack= --repo= --set-upstream |
|
|
|
|
--recurse-submodules= |
|
|
|
|
" |
|
|
|
|
return |
|
|
|
|
;; |
|
|
|
|