You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One might want to look at the history of a bunch of lines in a file, i.e. git log -L 234,255:path/to/file, or of a particular function, i.e. git log -L:function_name:path/to/file, while still examining all changes introduced by the commits that touched these lines.
If one uses a pathspec with git log, i.e. git log path/to/file, this behaviour can be achieved with the --full-diff option. It would be great if this option would also work with git log -L.
The text was updated successfully, but these errors were encountered:
One might want to look at the history of a bunch of lines in a file, i.e.
git log -L 234,255:path/to/file
, or of a particular function, i.e.git log -L:function_name:path/to/file
, while still examining all changes introduced by the commits that touched these lines.If one uses a pathspec with
git log
, i.e.git log path/to/file
, this behaviour can be achieved with the--full-diff
option. It would be great if this option would also work withgit log -L
.The text was updated successfully, but these errors were encountered: