diff options
author | Philippe Blain <levraiphilippeblain@gmail.com> | 2020-11-01 17:28:42 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-11-01 15:54:14 -0800 |
commit | a4514a46d9c85278ae4a350442dd4a160ff1f3cf (patch) | |
tree | 100fc6389e9387cd5613e87e85501c52993e7785 /Documentation/line-range-options.txt | |
parent | doc: line-range: improve formatting (diff) | |
download | tgif-a4514a46d9c85278ae4a350442dd4a160ff1f3cf.tar.xz |
blame-options.txt: also mention 'funcname' in '-L' description
Make it clearer that a function can be blamed by feeding `git blame`
'-L :<funcname>' by mentioning it at the beginnning of the description
of the '-L' option.
Also, in 'line-range-options.txt', which is used for git-log(1) and
gitk(1), do not parenthesize the mention of the ':<funcname>' mode, to
place it on equal footing with the '<start>,<end>' mode.
Signed-off-by: Philippe Blain <levraiphilippeblain@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/line-range-options.txt')
-rw-r--r-- | Documentation/line-range-options.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/line-range-options.txt b/Documentation/line-range-options.txt index 1c90127300..8e295a62b8 100644 --- a/Documentation/line-range-options.txt +++ b/Documentation/line-range-options.txt @@ -1,8 +1,8 @@ -L<start>,<end>:<file>:: -L:<funcname>:<file>:: - Trace the evolution of the line range given by '<start>,<end>' - (or the function name regex '<funcname>') within the '<file>'. You may + Trace the evolution of the line range given by '<start>,<end>', + or by the function name regex '<funcname>', 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, and |