Last Updated: February 25, 2016
·
1.176K
· ksi

Git: Log commits on working branch

To see only commits made on the working branch without all the clutter coming in from master, use

git log master.. --no-merges

Or add it directly to your ~/.gitconfig

[alias]
  lm = log master.. --no-merges

and just run

git lm