Merge branch 'tb/complete-sequencing'

The bash completion script (in contrib/) learned a few options that
"git revert" takes.

* tb/complete-sequencing:
  completion: suggest sequencer commands for revert
This commit is contained in:
Junio C Hamano 2015-06-11 09:29:59 -07:00
Родитель 43262d8d65 956352b67e
Коммит e356158b4a
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -2282,6 +2282,11 @@ _git_reset ()
_git_revert ()
{
local dir="$(__gitdir)"
if [ -f "$dir"/REVERT_HEAD ]; then
__gitcomp "--continue --quit --abort"
return
fi
case "$cur" in
--*)
__gitcomp "--edit --mainline --no-edit --no-commit --signoff"