Our project uses Git as the version control system and recently I needed to review someone's commits. How can I see a list of commits made by a specific user?
git log --author=<pattern>
will show the commit log filtered for a particular author. (--committer
can be used for committer if the distinction is necessary).