mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-15 17:56:17 +01:00
Let git implement DIFF_RESULT command
This commit is contained in:
@@ -60,6 +60,7 @@ public class GitRepositoryServiceProvider extends RepositoryServiceProvider
|
|||||||
Command.BROWSE,
|
Command.BROWSE,
|
||||||
Command.CAT,
|
Command.CAT,
|
||||||
Command.DIFF,
|
Command.DIFF,
|
||||||
|
Command.DIFF_RESULT,
|
||||||
Command.LOG,
|
Command.LOG,
|
||||||
Command.TAGS,
|
Command.TAGS,
|
||||||
Command.BRANCHES,
|
Command.BRANCHES,
|
||||||
@@ -168,6 +169,11 @@ public class GitRepositoryServiceProvider extends RepositoryServiceProvider
|
|||||||
return new GitDiffCommand(context, repository);
|
return new GitDiffCommand(context, repository);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public DiffResultCommand getDiffResultCommand() {
|
||||||
|
return new GitDiffResultCommand(context, repository);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Method description
|
* Method description
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user