Skip to content

Commit c2df01e

Browse files
committed
continue testing
1 parent 1d1526e commit c2df01e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/main/java/org/scm4j/vcs/GitVCSUtils.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ public static Git createRepository(File repoDir) {
1515
.setDirectory(repoDir)
1616
.setBare(false)
1717
.call();
18+
git
19+
.commit()
20+
.setMessage("Initial commit")
21+
.call();
1822
return git;
1923
} catch (GitAPIException e) {
2024
throw new EVCSException(e);

0 commit comments

Comments
 (0)