Message ID | 20240313090841.36717-1-james@jamesliu.io (mailing list archive) |
---|---|
Headers | show |
Series | log: make the --oneline option work with -L | expand |
James Liu <james@jamesliu.io> writes: > git-log accepts the --oneline option to display the short commit SHA and > title only. This is a convenient option when searching through Git > history, as it gives a rough idea of the changes introduced in each > commit. git-log also accepts the -L flag, which lets us provide a line > range for a given file. This is handy for limiting the search to a given > area of interest. > > However, when --oneline is used in combination with -L, Git actually > outputs the single line commit information _as well_ as the full diff. > For example: > > git log --oneline -L 660:Documentation/MyFirstObjectWalk.txt > > will incorrectly display the diffs too. Why is it incorrect? * "git log" takes options to tweak formatting of the commit log, options to tweak what commits are chosen, and options to tweak how the diff are shown. * "--oneline" tweaks how the log message gets shown. Others in the family are --pretty=fuller, --format='%h %s', etc. * "-L" tweaks how the diff gets shown (e.g. limits which part of the diff is shown) and what commits are shown (e.g. limits to commits that touch the specified area). So, just like "git log -L <range>:<file>" shows the commit log for each commit that touches the specified area of the file, followed by the diff that shows how the commit modified the range, it is natural to expect "git log --oneline -L <range>:<file>" to show the same diff after showing the commit log for these commits in the specified format, namely, with just a one-line description. It is not limited to "-L"; "git log --oneline -p" is expected to show the patch after a one-line description for the commit.
On 13.03.24 18:31, Junio C Hamano wrote: > James Liu <james@jamesliu.io> writes: > >> git-log accepts the --oneline option to display the short commit SHA and >> title only. This is a convenient option when searching through Git >> history, as it gives a rough idea of the changes introduced in each >> commit. git-log also accepts the -L flag, which lets us provide a line >> range for a given file. This is handy for limiting the search to a given >> area of interest. >> >> However, when --oneline is used in combination with -L, Git actually >> outputs the single line commit information _as well_ as the full diff. >> For example: >> >> git log --oneline -L 660:Documentation/MyFirstObjectWalk.txt >> >> will incorrectly display the diffs too. > > Why is it incorrect? > > * "git log" takes options to tweak formatting of the commit log, > options to tweak what commits are chosen, and options to tweak > how the diff are shown. > > * "--oneline" tweaks how the log message gets shown. Others in the > family are --pretty=fuller, --format='%h %s', etc. > > * "-L" tweaks how the diff gets shown (e.g. limits which part of > the diff is shown) and what commits are shown (e.g. limits to > commits that touch the specified area). > > So, just like "git log -L <range>:<file>" shows the commit log for > each commit that touches the specified area of the file, followed by > the diff that shows how the commit modified the range, it is natural > to expect "git log --oneline -L <range>:<file>" to show the same diff > after showing the commit log for these commits in the specified format, > namely, with just a one-line description. > > It is not limited to "-L"; "git log --oneline -p" is expected to > show the patch after a one-line description for the commit. > There's also "--no-patch" to suppress the patch. It combines well with "--oneline".
On Thu Mar 14, 2024 at 4:31 AM AEDT, Junio C Hamano wrote: > James Liu <james@jamesliu.io> writes: > > > However, when --oneline is used in combination with -L, Git actually > > outputs the single line commit information _as well_ as the full diff. > > For example: > > > > git log --oneline -L 660:Documentation/MyFirstObjectWalk.txt > > > > will incorrectly display the diffs too. > > Why is it incorrect? > > * "git log" takes options to tweak formatting of the commit log, > options to tweak what commits are chosen, and options to tweak > how the diff are shown. > > * "--oneline" tweaks how the log message gets shown. Others in the > family are --pretty=fuller, --format='%h %s', etc. > > * "-L" tweaks how the diff gets shown (e.g. limits which part of > the diff is shown) and what commits are shown (e.g. limits to > commits that touch the specified area). I suppose it isn't intuitive to me which options affect how the commits are presented, and which affect the diffs. The help entry for -L states that it will "Trace the evolution of the line range", which doesn't immediately suggest that it tweaks how the log message is shown. As a user of this option, I'm more interested in using it as a filter for how commits are chosen. -S feels like a similar option to -L, but will omit the diff when used with --oneline. I think I was probably experimenting with "--oneline -S" and then was surprised to see diffs after trying "--oneline -L".
On Thu Mar 14, 2024 at 5:08 AM AEDT, Beat Bolli wrote: > There's also "--no-patch" to suppress the patch. It combines well with > "--oneline". Thanks! That's a good one to keep handy.
"James Liu" <james@jamesliu.io> writes: > I suppose it isn't intuitive to me which options affect how the commits > are presented, and which affect the diffs. The help entry for -L states > that it will "Trace the evolution of the line range", which doesn't > immediately suggest that it tweaks how the log message is shown. Sorry, but you lost me. I do not understand this remark. The documentation for "-L" does not talk about tweaking how the message is shown at all, because "-L" does not have a say in how the log message gets shown at all. And the documentation for "--oneline", "--format", "--pretty" all should talk about how the log message gets shown. Anyway, if you are happy with "--no-patch", that's good.