diff options
author | Junio C Hamano <junkio@cox.net> | 2006-09-24 19:53:52 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-09-24 19:53:52 -0700 |
commit | b0ed9eafb35b2330d5a96be79307f0e65547febb (patch) | |
tree | 2af7dfb166f4f26098acf5ca6cf0289c1375fc23 /Documentation | |
parent | 700899b624f368af6f2322fc10c6a0350d398694 (diff) | |
parent | 2d10c555374df257e32848ba6f77fd73d608645f (diff) | |
download | git-b0ed9eafb35b2330d5a96be79307f0e65547febb.tar.gz git-b0ed9eafb35b2330d5a96be79307f0e65547febb.tar.xz |
Merge branch 'jc/filter-commit'
* jc/filter-commit:
git log: Unify header_filter and message_filter into one.
Update grep internal for grepping only in head/body
git-log --author and --committer are not left-anchored by default
rev-list: fix segfault with --{author,committer,grep}
revision traversal: --author, --committer, and --grep.
revision traversal: prepare for commit log match.
builtin-grep: make pieces of it available as library.
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-rev-list.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Documentation/git-rev-list.txt b/Documentation/git-rev-list.txt index 28966adbb..00a95e249 100644 --- a/Documentation/git-rev-list.txt +++ b/Documentation/git-rev-list.txt @@ -20,6 +20,7 @@ SYNOPSIS [ \--stdin ] [ \--topo-order ] [ \--parents ] + [ \--(author|committer|grep)=<pattern> ] [ [\--objects | \--objects-edge] [ \--unpacked ] ] [ \--pretty | \--header ] [ \--bisect ] @@ -154,6 +155,16 @@ limiting may be applied. Limit the commits output to specified time range. +--author='pattern', --committer='pattern':: + + Limit the commits output to ones with author/committer + header lines that match the specified pattern. + +--grep='pattern':: + + Limit the commits output to ones with log message that + matches the specified pattern. + --remove-empty:: Stop when a given path disappears from the tree. |