File was renamed from src/main/java/com/gitblit/transport/ssh/commands/AbstractGitCommand.java |
| | |
| | | * @author Eric Myhre |
| | | * |
| | | */ |
| | | public abstract class AbstractGitCommand extends BaseCommand { |
| | | public abstract class BaseGitCommand extends BaseCommand { |
| | | @Argument(index = 0, metaVar = "REPOSITORY", required = true, usage = "repository name") |
| | | protected String repository; |
| | | |
| | |
| | | @Override |
| | | public void run() throws Exception { |
| | | parseCommandLine(); |
| | | AbstractGitCommand.this.service(); |
| | | BaseGitCommand.this.service(); |
| | | } |
| | | |
| | | @Override |