git add -i: replace \t with blanks in the help message
authorRalf Thielow <ralf.thielow@gmail.com>
Wed, 22 Feb 2017 18:46:27 +0000 (19:46 +0100)
committerJunio C Hamano <gitster@pobox.com>
Wed, 22 Feb 2017 20:51:00 +0000 (12:51 -0800)
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>
git-add--interactive.perl
index 77876d433a1ba2384a690155b51dac8118fa27b4..f4ee228db1844449826b6a82648c7a6d6f917d30 100755 (executable)
@@ -1566,7 +1566,7 @@ sub help_cmd {
 update        - add working tree state to the staged set of changes
 revert        - revert staged set of changes back to the HEAD version
 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
 EOF
 }