Can I find out who modified given file last?
Can I also find out a list of changesets which affected a given file?
This command should give you all the commits that changed this file with the diff. You can also see who made this commit.
git log -p <filepath>
Try git log:
git log -n 1 -- path/to/file.html
-n 1
makes it only load the lastest commit.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With