diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2010-01-31 14:24:39 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-01-31 10:24:53 -0800 |
commit | 6a5d0b0a90789ed92cb87f1b69cfeef2a1db3566 (patch) | |
tree | 7e41d2a126b9090d7d3eaaa37c4dead8ce2a090a /Documentation/rev-list-options.txt | |
parent | b0883aa6c77111e88496bd0afe073caf68ab9f99 (diff) | |
download | git-6a5d0b0a90789ed92cb87f1b69cfeef2a1db3566.tar.gz |
Fix typos in technical documentation.
Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/rev-list-options.txt')
-rw-r--r-- | Documentation/rev-list-options.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/rev-list-options.txt b/Documentation/rev-list-options.txt index 3ef71179d9..6e9baf8b38 100644 --- a/Documentation/rev-list-options.txt +++ b/Documentation/rev-list-options.txt @@ -233,27 +233,27 @@ endif::git-rev-list[] Pretend as if all the refs in `$GIT_DIR/refs/heads` are listed on the command line as '<commit>'. If `pattern` is given, limit branches to ones matching given shell glob. If pattern lacks '?', - '*', or '[', '/*' at the end is impiled. + '*', or '[', '/*' at the end is implied. --tags[=pattern]:: Pretend as if all the refs in `$GIT_DIR/refs/tags` are listed on the command line as '<commit>'. If `pattern` is given, limit tags to ones matching given shell glob. If pattern lacks '?', '*', - or '[', '/*' at the end is impiled. + or '[', '/*' at the end is implied. --remotes[=pattern]:: Pretend as if all the refs in `$GIT_DIR/refs/remotes` are listed on the command line as '<commit>'. If `pattern`is given, limit remote tracking branches to ones matching given shell glob. - If pattern lacks '?', '*', or '[', '/*' at the end is impiled. + If pattern lacks '?', '*', or '[', '/*' at the end is implied. --glob=glob-pattern:: Pretend as if all the refs matching shell glob `glob-pattern` are listed on the command line as '<commit>'. Leading 'refs/', is automatically prepended if missing. If pattern lacks '?', '*', - or '[', '/*' at the end is impiled. + or '[', '/*' at the end is implied. ifndef::git-rev-list[] |