> For the complete documentation index, see [llms.txt](https://til.devjugal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.devjugal.com/git/show-commit-only-from-one-author.md).

# Show Commit Only From One Author

Sometimes we just want to show only commits from one author, we can use `git log --author` argument in that case.

## Example

```bash
git log --author="49350241+crazyuploader@users.noreply.github.com"
```

***Reference(s)***

* [Man7](https://man7.org/linux/man-pages/man1/git-log.1.html)
