summaryrefslogtreecommitdiff
path: root/contrib/completion
diff options
context:
space:
mode:
authorDaniels Umanovskis <daniels@umanovskis.se>2018-10-11 18:33:50 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-10-11 23:26:49 (GMT)
commit61018fe9e005a54e18184481927519d64035220a (patch)
tree66bd8527e8530f3f8d849ae84b86f7eadde720a1 /contrib/completion
parentcae598d9980661a978e2df4fb338518f7bf09572 (diff)
downloadgit-61018fe9e005a54e18184481927519d64035220a.zip
git-61018fe9e005a54e18184481927519d64035220a.tar.gz
git-61018fe9e005a54e18184481927519d64035220a.tar.bz2
doc: move git-cherry to plumbing
Also remove git-cherry from Bash completion because plumbing commands do not belong there. Signed-off-by: Daniels Umanovskis <daniels@umanovskis.se> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/completion')
-rw-r--r--contrib/completion/git-completion.bash11
1 files changed, 0 insertions, 11 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index d63d2df..12f7ce0 100644
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -1340,17 +1340,6 @@ _git_checkout ()
esac
}
-_git_cherry ()
-{
- case "$cur" in
- --*)
- __gitcomp_builtin cherry
- return
- esac
-
- __git_complete_refs
-}
-
__git_cherry_pick_inprogress_options="--continue --quit --abort"
_git_cherry_pick ()