aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/line-range-format.txt
diff options
context:
space:
mode:
authorEric Sunshine <sunshine@sunshineco.com>2013-08-06 09:59:45 -0400
committerJunio C Hamano <gitster@pobox.com>2013-08-06 14:47:04 -0700
commita6ac5f9864958f65269d8d58a049324403b039fd (patch)
tree5ed8209b561686b7424f9d683072ff34be66236a /Documentation/line-range-format.txt
parent0bc2cdd5507ea4acad06c6d872245e4a3fd2a4b6 (diff)
downloadgit-a6ac5f9864958f65269d8d58a049324403b039fd.tar.gz
line-range: teach -L^/RE/ to search from start of file
The -L/RE/ option of blame/log searches from the end of the previous -L range, if any. Add new notation -L^/RE/ to override this behavior and search from start of file. The new ^/RE/ syntax is valid only as the <start> argument of -L<start>,<end>. The <end> argument, as usual, is relative to <start>. Signed-off-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/line-range-format.txt')
-rw-r--r--Documentation/line-range-format.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/Documentation/line-range-format.txt b/Documentation/line-range-format.txt
index 42d74f75ad..cf84417060 100644
--- a/Documentation/line-range-format.txt
+++ b/Documentation/line-range-format.txt
@@ -11,6 +11,7 @@ absolute line number (lines count from 1).
This form will use the first line matching the given
POSIX regex. If <start> is a regex, it will search from the end of
the previous `-L` range, if any, otherwise from the start of file.
+If <start> is ``^/regex/'', it will search from the start of file.
If <end> is a regex, it will search
starting at the line given by <start>.
+