Skip to content

Commit

Permalink
test: GitUtilTest, don't sign commits
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Nuri <[email protected]>
  • Loading branch information
manusa committed Oct 25, 2024
1 parent ac97b95 commit 8d4fd08
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ private Git createDummyGitRepository(File gitFolder) throws GitAPIException, URI
Git git = Git.init().setDirectory(gitFolder).setInitialBranch("test-branch").call();
git.add().addFilepattern(".").call();
git.remoteAdd().setName("origin").setUri(new URIish("https://example.com/origin.git")).call();
git.commit().setMessage("Initial commit").call();
git.commit().setMessage("Initial commit").setSign(false).call();
return git;
}
}

0 comments on commit 8d4fd08

Please sign in to comment.