tomgi / git_stats

GitStats is a git repository statistics generator.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is there a way to ignore automatic commits?

PerfectCarl opened this issue · comments

On my project a bot updates the translations automatically (all located in the same folder by the way).

The commit message is always the same.
Is there a way to ignore such activity?

git --no-merges does the trick, like: "git shortlog -s -n --all --no-merges"
but it is not implemented but I'm thinking to fork this project which is not maintain anymore to add this fix if it is required.