From: Simon Glass Date: Wed, 3 Apr 2013 11:01:39 +0000 (+0000) Subject: patman: Ignore all Gerrit Commit-* tags X-Git-Tag: v2013.04-rc3~19^2~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3fefd5efa664adc06ed49547e817f3e328266a15;p=u-boot patman: Ignore all Gerrit Commit-* tags These tags are used by Gerrit, so let's ignore all of them. Signed-off-by: Simon Glass Reviewed-by: Doug Anderson --- diff --git a/tools/patman/patchstream.py b/tools/patman/patchstream.py index 5c2d3bc9b0..4fda852213 100644 --- a/tools/patman/patchstream.py +++ b/tools/patman/patchstream.py @@ -31,7 +31,7 @@ from series import Series # Tags that we detect and remove re_remove = re.compile('^BUG=|^TEST=|^BRANCH=|^Change-Id:|^Review URL:' - '|Reviewed-on:|Commit-Ready:') + '|Reviewed-on:|Commit-\w*:') # Lines which are allowed after a TEST= line re_allowed_after_test = re.compile('^Signed-off-by:')