From: Simon Glass Date: Fri, 2 Nov 2012 06:38:43 +0000 (+0000) Subject: patman: Add additional tags to ignore X-Git-Tag: v2013.01-rc1~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=619dd5de69bc506e4f4607aa1e698b2fd61b99fe;p=u-boot patman: Add additional tags to ignore The BRANCH= tag can be used to indicate the destination branch for a commit. Ignore this tag. Also ignore the gerrit 'Commit-Ready:' tag. Signed-off-by: Simon Glass --- diff --git a/tools/patman/patchstream.py b/tools/patman/patchstream.py index ad280cc46c..f7ee75a25f 100644 --- a/tools/patman/patchstream.py +++ b/tools/patman/patchstream.py @@ -30,8 +30,8 @@ import gitutil from series import Series # Tags that we detect and remove -re_remove = re.compile('^BUG=|^TEST=|^Change-Id:|^Review URL:' - '|Reviewed-on:|Reviewed-by:') +re_remove = re.compile('^BUG=|^TEST=|^BRANCH=|^Change-Id:|^Review URL:' + '|Reviewed-on:|Reviewed-by:|Commit-Ready:') # Lines which are allowed after a TEST= line re_allowed_after_test = re.compile('^Signed-off-by:')