summaryrefslogtreecommitdiff
path: root/releasenotes/notes
diff options
context:
space:
mode:
authorDr. Jens Harbott <harbott@osism.tech>2022-01-03 16:45:06 +0100
committerJeremy Stanley <fungi@yuggoth.org>2022-04-11 16:59:59 +0000
commit053b6294722165faa1259321781e36670e3cceee (patch)
tree005f8c159b6c69d4292dbaa4b5d0c51fa106d391 /releasenotes/notes
parentf1851f732a9936b2c2a7236d9d21aec4920e047e (diff)
downloadgit-review-053b6294722165faa1259321781e36670e3cceee.tar.gz
Fix submitting signed patches
When a commit is signed and the git config contains the setting log.ShowSignature=True, even the "--oneline" git log output for it will include multiple lines (the output from gpg verifying the signature), thus fooling us into assuming that multiple commits are to be submitted. Override the option to make sure we always get one line per commit only. Signed-off-by: Dr. Jens Harbott <harbott@osism.tech> Change-Id: Id4528209f1cd500afd06e2e61eb5689022251118
Diffstat (limited to 'releasenotes/notes')
-rw-r--r--releasenotes/notes/fix-show-signatures-5e9c12d43b7051f0.yaml10
1 files changed, 10 insertions, 0 deletions
diff --git a/releasenotes/notes/fix-show-signatures-5e9c12d43b7051f0.yaml b/releasenotes/notes/fix-show-signatures-5e9c12d43b7051f0.yaml
new file mode 100644
index 0000000..da26d99
--- /dev/null
+++ b/releasenotes/notes/fix-show-signatures-5e9c12d43b7051f0.yaml
@@ -0,0 +1,10 @@
+---
+fixes:
+ - |
+ Git's log.ShowSignature option is now supported. Previously,
+ setting it would confuse git-review into thinking there were
+ twice as many changes to push.
+upgrade:
+ - |
+ Git 2.10.0 or later is required as git-review now needs the
+ ``--no-show-signature`` option for git-log.