mirror of
https://github.com/git/git.git
synced 2024-11-01 06:47:52 +01:00
13b8f68c1f
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>
25 lines
559 B
Text
25 lines
559 B
Text
- number
|
|
+
|
|
If <start> or <end> is a number, it specifies an
|
|
absolute line number (lines count from 1).
|
|
+
|
|
|
|
- /regex/
|
|
+
|
|
This form will use the first line matching the given
|
|
POSIX regex. If <end> is a regex, it will search
|
|
starting at the line given by <start>.
|
|
+
|
|
|
|
- +offset or -offset
|
|
+
|
|
This is only valid for <end> and will specify a number
|
|
of lines before or after the line given by <start>.
|
|
+
|
|
|
|
- :regex
|
|
+
|
|
If the option's argument is of the form :regex, it denotes the range
|
|
from the first funcname line that matches <regex>, up to the next
|
|
funcname line.
|
|
+
|