Add prefix oriented completions for diff and format-patch commands.

Signed-off-by: Pascal Obry <pascal@obry.net>
Acked-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Pascal Obry 2008-04-06 18:56:08 +02:00 коммит произвёл Junio C Hamano
Родитель f2b3e3c722
Коммит aba201c6e8
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -639,7 +639,9 @@ _git_diff ()
--find-copies-harder --pickaxe-all --pickaxe-regex
--text --ignore-space-at-eol --ignore-space-change
--ignore-all-space --exit-code --quiet --ext-diff
--no-ext-diff"
--no-ext-diff
--no-prefix --src-prefix= --dst-prefix=
"
return
;;
esac
@ -696,6 +698,7 @@ _git_format_patch ()
--full-index --binary
--not --all
--cover-letter
--no-prefix --src-prefix= --dst-prefix=
"
return
;;