bash: add missing 'git merge' options

Namely: '--commit', '--stat', '--no-squash', '--ff', '--no-ff'.

One might wonder why add options that specify the default behaviour
anyway (e.g. '--commit', '--no-squash', etc.).  Users can override the
default with config options (e.g. 'branch.<name>.mergeoptions',
'merge.log'), but sometimes might still need the default behaviour.

Signed-off-by: SZEDER Gábor <szeder@ira.uka.de>
Acked-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
SZEDER Gábor 2009-02-15 14:25:11 +01:00 коммит произвёл Junio C Hamano
Родитель 1b7e543a6e
Коммит d532ebd5a7
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -1037,6 +1037,7 @@ _git_merge ()
--*) --*)
__gitcomp " __gitcomp "
--no-commit --no-stat --log --no-log --squash --strategy --no-commit --no-stat --log --no-log --squash --strategy
--commit --stat --no-squash --ff --no-ff
" "
return return
esac esac