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 u
You can omit merges with --no-merges:
--no-merges
git log --no-merges --author=
See the git log manpage for details.