git_stats
git_stats copied to clipboard
Is there a way to ignore automatic commits?
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.