git add -i: replace \t with blanks in the help message

Within the help message of 'git add -i', the 'diff' command uses one
tab character and blanks to create the space between the name and the
description while the others use blanks only.  So if the tab size is
not at 4 characters, this description will not be in range.
Replace the tab character with blanks.

Signed-off-by: Ralf Thielow <ralf.thielow@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Ralf Thielow 2017-02-22 19:46:27 +01:00 коммит произвёл Junio C Hamano
Родитель 0b65a8dbdb
Коммит e519eccdf4
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1566,7 +1566,7 @@ status - show paths with changes
update - add working tree state to the staged set of changes update - add working tree state to the staged set of changes
revert - revert staged set of changes back to the HEAD version revert - revert staged set of changes back to the HEAD version
patch - pick hunks and update selectively patch - pick hunks and update selectively
diff - view diff between HEAD and index diff - view diff between HEAD and index
add untracked - add contents of untracked files to the staged set of changes add untracked - add contents of untracked files to the staged set of changes
EOF EOF
} }