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);