View git log without merge commits

GitGit Log

Git Problem Overview


I'm trying to view commits made by a specific user, and want to remove any merges done by the user from the output. How can I do so?

I can check for the commits of a user using git log --author=<name>, but can't remove the merge commits in the output.

PS: Merge conflicts do not happen in the workflow of the repo in question, all branches are rebased before merging into master so it is safe to remove the merge commits from the output, and similarly, two feature branches are not merged with one another raising the possiblity.

Git Solutions


Solution 1 - Git

use

git log --author=<name> --no-merges

Additionally the --first-parent option may give useful result for you:

> --first-parent > Follow only the first parent commit upon seeing a merge commit. This option can give a better overview when viewing the > evolution of a particular topic branch, because merges > into a topic branch tend to be only about adjusting to updated upstream from time to time, and this option allows you to > ignore the individual commits brought in to your > history by such a merge. Cannot be combined with --bisect.

Solution 2 - Git

You can omit merges with --no-merges:

git log --no-merges --author=<name>

See the git log manpage for details.

Solution 3 - Git

The OP's question has been answered. I expounded on the answer for the lurkers. This lengthy log call will give you a nice view filtered by committer sans merge. Use git alias to tame this if you desire.

I hope it benefits someone and isn't treated too harshly with down-votes.

git log --no-merges --max-count=15 --pretty="format:%C(dim green) %<(9,trunc)%ar %C(bold magenta)%h %C(bold green)%<(12,trunc)%an %C(bold
yellow)%<(113,trunc)%s" --committer="<name>"

Example: enter image description here

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAnshul GoyalView Question on Stackoverflow
Solution 1 - Git0xAXView Answer on Stackoverflow
Solution 2 - GitmorxaView Answer on Stackoverflow
Solution 3 - GitJoe JohnstonView Answer on Stackoverflow