From 6f4bc9268d4801e5feecfbeb63bab6316459fae9 Mon Sep 17 00:00:00 2001 From: Anita Hammer <166057949+anitahammer@users.noreply.github.com> Date: Wed, 8 May 2024 06:53:36 +0100 Subject: [PATCH] Update GitRepository.java --- java/com/google/copybara/git/GitRepository.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/com/google/copybara/git/GitRepository.java b/java/com/google/copybara/git/GitRepository.java index a01767af3..323d3c061 100644 --- a/java/com/google/copybara/git/GitRepository.java +++ b/java/com/google/copybara/git/GitRepository.java @@ -2358,7 +2358,7 @@ public LogCmd grep(@Nullable String grepString) { * Run 'git log' and returns zero or more {@link GitLogEntry}. */ public ImmutableList run() throws RepoException { - List cmd = Lists.newArrayList("log", "--no-color", createFormat(includeBody)); + List cmd = Lists.newArrayList("-c", "log.showSignature=false", "log", "--no-color", createFormat(includeBody)); if (limit > 0) { cmd.add("-" + limit);