implement hg tag command and add rest endpoints

This commit is contained in:
Konstantin Schaper
2020-11-25 11:29:06 +01:00
parent 0c5ab90852
commit d0feb7c22c
14 changed files with 339 additions and 11 deletions

View File

@@ -148,6 +148,11 @@ public class GitRepositoryServiceProvider extends RepositoryServiceProvider
return new GitTagsCommand(context, gpg);
}
@Override
public TagCommand getTagCommand() {
return new GitTagCommand(context, gpg);
}
@Override
public MergeCommand getMergeCommand() {
return commandInjector.getInstance(GitMergeCommand.class);