From: Guido Günther Date: Mon, 16 May 2022 09:23:19 +0000 (+0200) Subject: git/repository: Disable signatures when grepping for commits X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7717b39249c9a439afae918a9e53f304282ecee5;p=tools%2Fgit-buildpackage.git git/repository: Disable signatures when grepping for commits Otherwise get the signature back as well. Thanks: наб for the patch Closes: #1010370 --- 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)