From b887897c3cc1cd2a4cdd1cdea8479148d0c32c1f Mon Sep 17 00:00:00 2001 From: Peter Jones Date: Thu, 12 Jul 2018 10:55:34 -0400 Subject: [PATCH] do-rebase: use --no-signature as well This adds --no-signature to do-rebase's diff format-patch invocation, so the only things that change are the actual patch contents. Signed-off-by: Peter Jones --- do-rebase | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/do-rebase b/do-rebase index a2c5a51..a8b7fe9 100755 --- a/do-rebase +++ b/do-rebase @@ -6,7 +6,7 @@ shopt -qs expand_aliases export LC_COLLATE=C export LC_ALL=C -format_patch_ops="--no-signature --no-numbered --stat=80 --summary -O.git.diff.order --patience -l0" +format_patch_ops="--zero-commit --no-signature --no-numbered --stat=80 --summary -O.git.diff.order --patience -l0" alias othergit="GIT_DIR=$PWD/.rhboot.git GIT_WORK_TREE=$PWD git" alias formatpatch="othergit format-patch $format_patch_ops"