Back
Is there a way to list all commits that changed a specific file?
To list all the commits
Refer: https://git-scm.com/docs/git-log#Documentation/git-log.txt---follow
From the documentation use --follow option to list all commits
git log --follow --filename
Note:
You might see some are using a git log path. But that approach is handy if you want to track, but stumbles when files were renamed. So we suggest you use --follow option to follow the file name and list all commits that changed a specific file.
31k questions
32.8k answers
501 comments
693 users