Merge branch 'sg/complete-help-undup'

* sg/complete-help-undup:
  completion: remove 'help' duplicate from porcelain commands
This commit is contained in:
Junio C Hamano 2012-11-25 18:43:54 -08:00
Родитель f9b329a7d1 585b96bd4c
Коммит 09b61b5e8c
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -585,7 +585,7 @@ __git_list_porcelain_commands ()
{
local i IFS=" "$'\n'
__git_compute_all_commands
for i in "help" $__git_all_commands
for i in $__git_all_commands
do
case $i in
*--*) : helper pattern;;