We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdde881 commit 2535007Copy full SHA for 2535007
1 file changed
src/main/java/de/variantsync/evolution/repository/Repository.java
@@ -108,7 +108,13 @@ public Path getPath() {
108
return path;
109
}
110
111
- protected Git git() throws IOException {
+ /**
112
+ * Grants access to the underlying git object.
113
+ *
114
+ * @return The wrapped git object.
115
+ * @throws IOException iff the repository could not be loaded for some reason.
116
+ */
117
+ public Git git() throws IOException {
118
if (git == null) {
119
git = GitUtil.loadGitRepo(path.toFile());
120
0 commit comments