diff --git a/stackalytics/processor/vcs.py b/stackalytics/processor/vcs.py index 67879aa45..227737d2f 100644 --- a/stackalytics/processor/vcs.py +++ b/stackalytics/processor/vcs.py @@ -202,6 +202,10 @@ class Git(Vcs): commit[param[0]] = rec.group(i) i += 1 + # ignore machine/script produced submodule auto updates + if commit['subject'] == u'Update git submodules': + continue + if not commit['author_email']: # ignore commits with empty email (there are some < Essex) continue