diff options
author | Thomas Rast <trast@student.ethz.ch> | 2013-03-28 17:47:33 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-03-28 10:30:04 -0700 |
commit | 13b8f68c1f0b6d4ff5a7bed5a834e7e5e34a9fd0 (patch) | |
tree | 8e28bd102d82587678bb9ab32345f26039bf0ad4 /Documentation/git-log.txt | |
parent | 12da1d1f6ffcd546a892a33302bb34fd37169022 (diff) | |
download | git-13b8f68c1f0b6d4ff5a7bed5a834e7e5e34a9fd0.tar.gz |
log -L: :pattern:file syntax to find by funcname
This new syntax finds a funcname matching /pattern/, and then takes from there
up to (but not including) the next funcname. So you can say
git log -L:main:main.c
and it will dig up the main() function and show its line-log, provided
there are no other funcnames matching 'main'.
Signed-off-by: Thomas Rast <trast@student.ethz.ch>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-log.txt')
-rw-r--r-- | Documentation/git-log.txt | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Documentation/git-log.txt b/Documentation/git-log.txt index 8727c60ab3..4850226aaf 100644 --- a/Documentation/git-log.txt +++ b/Documentation/git-log.txt @@ -69,12 +69,13 @@ produced by --stat etc. Note that only message is considered, if also a diff is shown its size is not included. --L <start>,<end>:<file>:: +-L <start>,<end>:<file>, -L :<regex>:<file>:: + Trace the evolution of the line range given by "<start>,<end>" - within the <file>. You may not give any pathspec limiters. - This is currently limited to a walk starting from a single - revision, i.e., you may only give zero or one positive - revision arguments. + (or the funcname regex <regex>) within the <file>. You may + not give any pathspec limiters. This is currently limited to + a walk starting from a single revision, i.e., you may only + give zero or one positive revision arguments. <start> and <end> can take one of these forms: |