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 <pjones@redhat.com>
This commit is contained in:
Peter Jones 2018-07-12 10:55:34 -04:00
parent e8fe2763b0
commit b887897c3c
1 changed files with 1 additions and 1 deletions

View File

@ -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"