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>
Ralf Thielow committed
Feb 22, 2017 at 19:46 UTC
e519eccdf45f3b36d9596f4db7474a596f9bc72f
1 file changed
+1
-1
git-add--interactive.perl
+1
-1
@@ -1566,7 +1566,7 @@ status - show paths with changes
1566
update - add working tree state to the staged set of changes
1567
revert - revert staged set of changes back to the HEAD version
1568
patch - pick hunks and update selectively
1569
-diff - view diff between HEAD and index
1569
+diff - view diff between HEAD and index
1570
add untracked - add contents of untracked files to the staged set of changes
1571
EOF
1572
}