git log without tags
git log --format="%C(auto) %h %s"
A bit late to the party, but I have just encountered the same issue.
This should display everything except tags:git log --decorate-refs-exclude=refs/tags --pretty='%h %d %s' -n10
git log --format="%C(auto) %h %s"
A bit late to the party, but I have just encountered the same issue.
This should display everything except tags:git log --decorate-refs-exclude=refs/tags --pretty='%h %d %s' -n10