From: Nguyễn Thái Ngọc Duy Date: Fri, 9 Feb 2018 11:01:56 +0000 (+0700) Subject: completion: use __gitcomp_builtin in _git_fetch X-Git-Tag: v2.17.0-rc0~7^2~28 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=554a1df49a743fe1a2e35fac53d602c055bc7941;p=thirdparty%2Fgit.git completion: use __gitcomp_builtin in _git_fetch New completable options: --deepen= --ipv4 --ipv6 --jobs= --multiple --progress --refmap= --shallow-exclude= --shallow-since= --update-head-ok Since _git_pull() needs fetch options too, $__git_fetch_options remains. This variable will soon be gone after _git_pull() is updated. Signed-off-by: Nguyễn Thái Ngọc Duy Signed-off-by: Junio C Hamano --- diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 7763f88347..4275307c3d 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -1462,7 +1462,7 @@ _git_fetch () return ;; --*) - __gitcomp "$__git_fetch_options" + __gitcomp_builtin fetch "--no-tags" return ;; esac