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>

Daniels Umanovskis committed Oct 11, 2018 at 20:33 UTC 61018fe9e005a54e18184481927519d64035220a
2 files changed +1 -12
command-list.txt
+1 -1
@@ -62,7 +62,7 @@ git-check-mailmap purehelpers
62 git-checkout mainporcelain history
63 git-checkout-index plumbingmanipulators
64 git-check-ref-format purehelpers
65 -git-cherry ancillaryinterrogators complete
65 +git-cherry plumbinginterrogators complete
66 git-cherry-pick mainporcelain
67 git-citool mainporcelain
68 git-clean mainporcelain
contrib/completion/git-completion.bash
-11
@@ -1340,17 +1340,6 @@ _git_checkout ()
1340 esac
1341 }
1342
1343 -_git_cherry ()
1344 -{
1345 - case "$cur" in
1346 - --*)
1347 - __gitcomp_builtin cherry
1348 - return
1349 - esac
1350 -
1351 - __git_complete_refs
1352 -}
1353 -
1343 __git_cherry_pick_inprogress_options="--continue --quit --abort"
1344
1345 _git_cherry_pick ()