diff options
author | Jari Aalto <jari.aalto@cante.net> | 2010-12-01 16:51:25 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-12-01 11:26:43 -0800 |
commit | dc91e1b2cbb74797ad60a39d571553f9cd3419f6 (patch) | |
tree | a5a6f6eba997160e11039928d101f5e27603b430 /Documentation/git-commit.txt | |
parent | e22148f406a7a31a25ebda01d21d9a4646ce82ea (diff) | |
download | git-dc91e1b2cbb74797ad60a39d571553f9cd3419f6.tar.gz |
git-commit.txt: (synopsis): move -i and -o before "--"
All options, including -i and -o, must come before "--" which is the
end of options marker.
Reported-by: Joey Hess <joey@kitenet.net>
Signed-off-by: Jari Aalto <jari.aalto@cante.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-commit.txt')
-rw-r--r-- | Documentation/git-commit.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/git-commit.txt b/Documentation/git-commit.txt index 42fb1f57b2..ec7b577b85 100644 --- a/Documentation/git-commit.txt +++ b/Documentation/git-commit.txt @@ -11,8 +11,8 @@ SYNOPSIS 'git commit' [-a | --interactive] [-s] [-v] [-u<mode>] [--amend] [--dry-run] [(-c | -C) <commit>] [-F <file> | -m <msg>] [--reset-author] [--allow-empty] [--allow-empty-message] [--no-verify] [-e] [--author=<author>] - [--date=<date>] [--cleanup=<mode>] [--status | --no-status] [--] - [[-i | -o ]<file>...] + [--date=<date>] [--cleanup=<mode>] [--status | --no-status] + [-i | -o] [--] [<file>...] DESCRIPTION ----------- |