Skip to content

Commit 9dcca58

Browse files
committed
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 <[email protected]>
1 parent 285c6cb commit 9dcca58

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

git-filter-branch.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,11 @@ set_ident () {
9898
}
9999

100100
USAGE="[--env-filter <command>] [--tree-filter <command>]
101-
[--index-filter <command>] [--parent-filter <command>]
102-
[--msg-filter <command>] [--commit-filter <command>]
103-
[--tag-name-filter <command>] [--subdirectory-filter <directory>]
104-
[--original <namespace>] [-d <directory>] [-f | --force]
105-
[<rev-list options>...]"
101+
[--index-filter <command>] [--parent-filter <command>]
102+
[--msg-filter <command>] [--commit-filter <command>]
103+
[--tag-name-filter <command>] [--subdirectory-filter <directory>]
104+
[--original <namespace>] [-d <directory>] [-f | --force]
105+
[<rev-list options>...]"
106106

107107
OPTIONS_SPEC=
108108
. git-sh-setup

0 commit comments

Comments
 (0)