Let git implement DIFF_RESULT command

This commit is contained in:
Rene Pfeuffer
2019-08-16 15:56:15 +02:00
parent 3ad3da5398
commit aa1452ab85

View File

@@ -59,7 +59,8 @@ public class GitRepositoryServiceProvider extends RepositoryServiceProvider
Command.BLAME,
Command.BROWSE,
Command.CAT,
Command.DIFF,
Command.DIFF,
Command.DIFF_RESULT,
Command.LOG,
Command.TAGS,
Command.BRANCHES,
@@ -168,6 +169,11 @@ public class GitRepositoryServiceProvider extends RepositoryServiceProvider
return new GitDiffCommand(context, repository);
}
@Override
public DiffResultCommand getDiffResultCommand() {
return new GitDiffResultCommand(context, repository);
}
/**
* Method description
*