Skip to content

Commit be82876

Browse files
committed
getWorkspace() method added
1 parent 199153f commit be82876

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main/java/org/scm4j/vcs/api/IVCS.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import java.util.Set;
55

66
import org.scm4j.vcs.api.exceptions.EVCSFileNotFound;
7+
import org.scm4j.vcs.api.workingcopy.IVCSWorkspace;
78

89
public interface IVCS {
910
void createBranch(String srcBranchName, String dstBranchName, String commitMessage);
@@ -35,4 +36,6 @@ public interface IVCS {
3536
String removeFile(String branchName, String filePath, String commitMessage);
3637

3738
List<VCSCommit> getCommitsRange(String branchName, String afterCommitId, String untilCommitId);
39+
40+
IVCSWorkspace getWorkspace();
3841
}

0 commit comments

Comments
 (0)