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?
Asked
Active
Viewed 1.2e+01k times
206
-
3@RobertHarvey you marked this is as duplicate of 4259996 but actually 4259996 is duplicate of this – user829755 May 17 '17 at 08:42
-
Possibly this is not a duplicate, if he meant to find the commit contents here (= the actual diffs). – sjas Sep 17 '17 at 15:09
2 Answers
235
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).

Amber
- 507,862
- 82
- 626
- 550
-
11You mean author. `--committer` is for the committer. The two are different if, for example, the commit is from a patch sent by email. Then the committer (a maintainer) and the author are two different people. – wilhelmtell Jun 02 '10 at 02:16
-
2
99
Try this:
git log --author=<name or email>
or pass the same option to gitk
, or if already in gitk, go to view > new view, and fill in the appropriate field. The name doesn't have to be exact; it's matched as a regex (a substring, in the trivial case) against the author field.

Cascabel
- 479,068
- 72
- 370
- 318
-
2Just note that if do this in `gitk`, it will also show the parent commit for context (the white circles). You can't change that behavior AFAIK. – wisbucky Nov 16 '17 at 18:32