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 199153f commit be82876Copy full SHA for be82876
src/main/java/org/scm4j/vcs/api/IVCS.java
@@ -4,6 +4,7 @@
4
import java.util.Set;
5
6
import org.scm4j.vcs.api.exceptions.EVCSFileNotFound;
7
+import org.scm4j.vcs.api.workingcopy.IVCSWorkspace;
8
9
public interface IVCS {
10
void createBranch(String srcBranchName, String dstBranchName, String commitMessage);
@@ -35,4 +36,6 @@ public interface IVCS {
35
36
String removeFile(String branchName, String filePath, String commitMessage);
37
38
List<VCSCommit> getCommitsRange(String branchName, String afterCommitId, String untilCommitId);
39
+
40
+ IVCSWorkspace getWorkspace();
41
}
0 commit comments