James Moger
2014-03-21 30d47d4f203231c80ffefea1cf10187b841b6110
Change hidden scope of the git dispatcher and the upload & receive commands
3 files modified
6 ■■■■ changed files
src/main/java/com/gitblit/transport/ssh/git/GitDispatcher.java 2 ●●● patch | view | raw | blame | history
src/main/java/com/gitblit/transport/ssh/git/Receive.java 2 ●●● patch | view | raw | blame | history
src/main/java/com/gitblit/transport/ssh/git/Upload.java 2 ●●● patch | view | raw | blame | history
src/main/java/com/gitblit/transport/ssh/git/GitDispatcher.java
@@ -26,7 +26,7 @@
import com.gitblit.transport.ssh.commands.DispatchCommand;
import com.gitblit.transport.ssh.commands.SshCommandContext;
@CommandMetaData(name = "git", description="Dispatcher for git receive and upload commands", hidden = true)
@CommandMetaData(name = "git", description="Git commands")
public class GitDispatcher extends DispatchCommand {
    protected RepositoryResolver<SshDaemonClient> repositoryResolver;
src/main/java/com/gitblit/transport/ssh/git/Receive.java
@@ -19,7 +19,7 @@
import com.gitblit.transport.ssh.commands.CommandMetaData;
@CommandMetaData(name = "git-receive-pack", description = "Receives pushes from a client")
@CommandMetaData(name = "git-receive-pack", description = "Receives pushes from a client", hidden = true)
public class Receive extends BaseGitCommand {
    @Override
    protected void runImpl() throws Failure {
src/main/java/com/gitblit/transport/ssh/git/Upload.java
@@ -19,7 +19,7 @@
import com.gitblit.transport.ssh.commands.CommandMetaData;
@CommandMetaData(name = "git-upload-pack", description = "Sends packs to a client for clone and fetch")
@CommandMetaData(name = "git-upload-pack", description = "Sends packs to a client for clone and fetch", hidden = true)
public class Upload extends BaseGitCommand {
    @Override
    protected void runImpl() throws Failure {