patman: Add --no-signoff to suppress adding signoffs
To enable use of patman with FSF/GNU projects, such as GCC or Binutils, no Signed-off-by may be added. This adds a command line flag '--no-signoff' to suppress adding signoffs in patman when processing commits. Signed-off-by: Philipp Tomsich <philipp.tomsich@vrull.eu> Reviewed-by: Simon Glass <sjg@chromium.org> Fix patman testBranch() test: Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:

committed by
Simon Glass

parent
5e66338bab
commit
b3aff15ee4
@@ -81,6 +81,8 @@ send.add_argument('--no-check', action='store_false', dest='check_patch',
|
||||
help="Don't check for patch compliance")
|
||||
send.add_argument('--no-tags', action='store_false', dest='process_tags',
|
||||
default=True, help="Don't process subject tags as aliases")
|
||||
send.add_argument('--no-signoff', action='store_false', dest='add_signoff',
|
||||
default=True, help="Don't add Signed-off-by to patches")
|
||||
send.add_argument('--smtp-server', type=str,
|
||||
help="Specify the SMTP server to 'git send-email'")
|
||||
|
||||
|
Reference in New Issue
Block a user