Skip to content
This repository was archived by the owner on Nov 9, 2017. It is now read-only.

Commit 85453fd

Browse files
johnkeepinggitster
authored andcommitted
completion: complete merge-base options
Signed-off-by: John Keeping <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent a25014b commit 85453fd

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

contrib/completion/git-completion.bash

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1499,6 +1499,12 @@ _git_mergetool ()
14991499

15001500
_git_merge_base ()
15011501
{
1502+
case "$cur" in
1503+
--*)
1504+
__gitcomp "--octopus --independent --is-ancestor --fork-point"
1505+
return
1506+
;;
1507+
esac
15021508
__gitcomp_nl "$(__git_refs)"
15031509
}
15041510

0 commit comments

Comments
 (0)