13 October 2022

How to find who and when modified each line of a file last time, and how to find who and when added/deleted a portion of a code line of a file since the very beginning

How to find who and when modified each line of a file last time?

$ git blame -- <path/file>


How to find who and when added/deleted a portion of a code line of a file since the very beginning?

$ git log -S'blah blah' --pretty='format: %h %an %d %s'


No comments:

Post a Comment