diff options
author | Brandon Casey <casey@nrlssc.navy.mil> | 2008-01-30 18:41:25 -0600 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-01-30 17:21:02 -0800 |
commit | c41b439244c51b30c60953192816afc91e552578 (patch) | |
tree | 4e4e7b6039b628040c42c067ca9a4a488b303152 | |
parent | 733f1815abf99fe43eb8a9d6df5e0466751e6ba3 (diff) | |
download | git-c41b439244c51b30c60953192816afc91e552578.tar.gz git-c41b439244c51b30c60953192816afc91e552578.tar.xz |
filter-branch docs: remove brackets so not to imply revision arg is optional
Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | Documentation/git-filter-branch.txt | 2 | ||||
-rwxr-xr-x | git-filter-branch.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/git-filter-branch.txt b/Documentation/git-filter-branch.txt index e22dfa580..a7f51ab4d 100644 --- a/Documentation/git-filter-branch.txt +++ b/Documentation/git-filter-branch.txt @@ -13,7 +13,7 @@ SYNOPSIS [--msg-filter <command>] [--commit-filter <command>] [--tag-name-filter <command>] [--subdirectory-filter <directory>] [--original <namespace>] [-d <directory>] [-f | --force] - [<rev-list options>...] + <rev-list options> DESCRIPTION ----------- diff --git a/git-filter-branch.sh b/git-filter-branch.sh index fbb948d6f..753bf50c6 100755 --- a/git-filter-branch.sh +++ b/git-filter-branch.sh @@ -92,7 +92,7 @@ USAGE="[--env-filter <command>] [--tree-filter <command>] \ [--msg-filter <command>] [--commit-filter <command>] \ [--tag-name-filter <command>] [--subdirectory-filter <directory>] \ [--original <namespace>] [-d <directory>] [-f | --force] \ -[<rev-list options>...]" +<rev-list options>" OPTIONS_SPEC= . git-sh-setup |