I have a project which sources are controlled with help of git.
Right now I want to find out when my teammate made last edits in a specific file. I want to find out SHA1 of commit or to see his edits as diff.
I guess I can use git log --stat <path/to/file>
and review list of all commits where my file was changed.
Are there any quick ways to do it?
git help log
. Thank you.git log --author=your_teammate -- path/to/file -n 1
does the work :) – Poulter