aboutsummaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-10-02 21:13:39 -0700
committerJunio C Hamano <gitster@pobox.com>2012-10-02 21:13:39 -0700
commitfa11d7c87940154f3f6463353335c6010b13e5db (patch)
treea661388a8f6bf2e3adb17dde81a0fb15c3041e7b /Documentation
parent5ce993a8126e4f428bc7862d4120b3ae81eb6a79 (diff)
parent38cfe915bfc3ea0dbcbedaa82c44460a2ada2f42 (diff)
downloadgit-fa11d7c87940154f3f6463353335c6010b13e5db.tar.gz
git-fa11d7c87940154f3f6463353335c6010b13e5db.tar.xz
Merge branch 'nd/grep-reflog'
Teach the commands from the "log" family the "--grep-reflog" option to limit output by string that appears in the reflog entry when the "--walk-reflogs" option is in effect. * nd/grep-reflog: revision: make --grep search in notes too if shown log --grep-reflog: reject the option without -g revision: add --grep-reflog to filter commits by reflog messages grep: prepare for new header field filter
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/rev-list-options.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/Documentation/rev-list-options.txt b/Documentation/rev-list-options.txt
index 1fc2a1840..ee497430c 100644
--- a/Documentation/rev-list-options.txt
+++ b/Documentation/rev-list-options.txt
@@ -51,6 +51,14 @@ endif::git-rev-list[]
commits whose author matches any of the given patterns are
chosen (similarly for multiple `--committer=<pattern>`).
+--grep-reflog=<pattern>::
+
+ Limit the commits output to ones with reflog entries that
+ match the specified pattern (regular expression). With
+ more than one `--grep-reflog`, commits whose reflog message
+ matches any of the given patterns are chosen. It is an
+ error to use this option unless `--walk-reflogs` is in use.
+
--grep=<pattern>::
Limit the commits output to ones with log message that
@@ -58,6 +66,9 @@ endif::git-rev-list[]
more than one `--grep=<pattern>`, commits whose message
matches any of the given patterns are chosen (but see
`--all-match`).
++
+When `--show-notes` is in effect, the message from the notes as
+if it is part of the log message.
--all-match::
Limit the commits output to ones that match all given --grep,