summaryrefslogtreecommitdiffstats
path: root/rev-list-options.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-09-18 15:30:42 -0700
committerJunio C Hamano <gitster@pobox.com>2012-09-18 15:30:42 -0700
commit8ce35d7cc1d82c9267b88efee4c3e81f0c6b3b9f (patch)
tree64cb83951d10712261e23b8b91ec2d039f4c2b17 /rev-list-options.txt
parent281fd394a268e17e15f0869620a8f8fcaf28fbd1 (diff)
downloadgit-htmldocs-8ce35d7cc1d82c9267b88efee4c3e81f0c6b3b9f.tar.gz
Autogenerated HTML docs for v1.7.12.1-382-gb0576
Diffstat (limited to 'rev-list-options.txt')
-rw-r--r--rev-list-options.txt23
1 files changed, 18 insertions, 5 deletions
diff --git a/rev-list-options.txt b/rev-list-options.txt
index 918c1109f..1fc2a1840 100644
--- a/rev-list-options.txt
+++ b/rev-list-options.txt
@@ -3,8 +3,15 @@ Commit Limiting
Besides specifying a range of commits that should be listed using the
special notations explained in the description, additional commit
-limiting may be applied. Note that they are applied before commit
-ordering and formatting options, such as '--reverse'.
+limiting may be applied.
+
+Using more options generally further limits the output (e.g.
+`--since=<date1>` limits to commits newer than `<date1>`, and using it
+with `--grep=<pattern>` further limits to commits whose log message
+has a line that matches `<pattern>`), unless otherwise noted.
+
+Note that these are applied before commit
+ordering and formatting options, such as `--reverse`.
--
@@ -39,16 +46,22 @@ endif::git-rev-list[]
--committer=<pattern>::
Limit the commits output to ones with author/committer
- header lines that match the specified pattern (regular expression).
+ header lines that match the specified pattern (regular
+ expression). With more than one `--author=<pattern>`,
+ commits whose author matches any of the given patterns are
+ chosen (similarly for multiple `--committer=<pattern>`).
--grep=<pattern>::
Limit the commits output to ones with log message that
- matches the specified pattern (regular expression).
+ matches the specified pattern (regular expression). With
+ more than one `--grep=<pattern>`, commits whose message
+ matches any of the given patterns are chosen (but see
+ `--all-match`).
--all-match::
Limit the commits output to ones that match all given --grep,
- --author and --committer instead of ones that match at least one.
+ instead of ones that match at least one.
-i::
--regexp-ignore-case::