diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-08-05 15:06:21 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-08-05 15:06:21 -0700 |
commit | 9dcca58db42e85e056c6523429204f367a671a0e (patch) | |
tree | 8a84bd268f2a6d695b9604e933a9de738cd4bd11 | |
parent | 285c6cbf3c8eeadb6d4d4c3203888809e1cc7a81 (diff) | |
download | git-9dcca58db42e85e056c6523429204f367a671a0e.tar.gz git-9dcca58db42e85e056c6523429204f367a671a0e.tar.xz |
filter-branch.sh: de-dent usage string
"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>
-rwxr-xr-x | git-filter-branch.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/git-filter-branch.sh b/git-filter-branch.sh index 0d399aa88..71d072baa 100755 --- a/git-filter-branch.sh +++ b/git-filter-branch.sh @@ -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 |