OSDN Git Service

filter-branch.sh: de-dent usage string
authorJunio C Hamano <gitster@pobox.com>
Fri, 5 Aug 2011 22:06:21 +0000 (15:06 -0700)
committerJunio C Hamano <gitster@pobox.com>
Fri, 5 Aug 2011 22:06:21 +0000 (15:06 -0700)
"Usage: git filter-branch " that is prefixed to the first line is 25
columns long, so the "[--index-filter ..." on the second line would not
align with "[--env-filter ..." on the first line to begin with. If the
second and subsequent lines do not aim to align with anything on the
first line, it is just fine to indent them with a single HT.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-filter-branch.sh

index 0d399aa..71d072b 100755 (executable)
@@ -98,11 +98,11 @@ set_ident () {
 }
 
 USAGE="[--env-filter <command>] [--tree-filter <command>]
-           [--index-filter <command>] [--parent-filter <command>]
-           [--msg-filter <command>] [--commit-filter <command>]
-           [--tag-name-filter <command>] [--subdirectory-filter <directory>]
-           [--original <namespace>] [-d <directory>] [-f | --force]
-           [<rev-list options>...]"
+       [--index-filter <command>] [--parent-filter <command>]
+       [--msg-filter <command>] [--commit-filter <command>]
+       [--tag-name-filter <command>] [--subdirectory-filter <directory>]
+       [--original <namespace>] [-d <directory>] [-f | --force]
+       [<rev-list options>...]"
 
 OPTIONS_SPEC=
 . git-sh-setup