aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/git
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2022-05-16 11:23:19 +0200
committerGuido Günther <agx@sigxcpu.org>2022-05-16 11:23:19 +0200
commit7717b39249c9a439afae918a9e53f304282ecee5 (patch)
tree12e0444acd1986fbc34ba8531f532c79ca728a26 /gbp/git
parent02751cec1271935243dfbcd69582113b6d3040e4 (diff)
git/repository: Disable signatures when grepping for commits
Otherwise get the signature back as well. Thanks: наб for the patch Closes: #1010370
Diffstat (limited to 'gbp/git')
-rw-r--r--gbp/git/repository.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/gbp/git/repository.py b/gbp/git/repository.py
index 48d00533..176be9bf 100644
--- a/gbp/git/repository.py
+++ b/gbp/git/repository.py
@@ -1666,6 +1666,7 @@ class GitRepository(object):
@type since: C{str}
"""
args = GitArgs('--pretty=format:%H')
+ args.add("--no-show-signature")
args.add_false(merges, '--no-merges')
args.add('--grep=%s' % regex)
args.add_true(since, since)