We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d1526e commit c2df01eCopy full SHA for c2df01e
src/main/java/org/scm4j/vcs/GitVCSUtils.java
@@ -15,6 +15,10 @@ public static Git createRepository(File repoDir) {
15
.setDirectory(repoDir)
16
.setBare(false)
17
.call();
18
+ git
19
+ .commit()
20
+ .setMessage("Initial commit")
21
+ .call();
22
return git;
23
} catch (GitAPIException e) {
24
throw new EVCSException(e);
0 commit comments