David Ostrovsky
2014-02-26 a3de33e71a22268105714e01d09c1c2e28bfe2c3
src/main/java/com/gitblit/transport/ssh/SshDaemon.java
@@ -102,9 +102,12 @@
      sshd.setFileSystemFactory(new DisabledFilesystemFactory());
      sshd.setForwardingFilter(new NonForwardingFilter());
      DispatchCommand gitblitCmd = new DispatchCommand();
      gitblitCmd.registerCommand(CreateRepository.class);
      gitblitCmd.registerCommand(VersionCommand.class);
      DispatchCommand dispatcher = new DispatchCommand();
      dispatcher.registerCommand(CreateRepository.class);
      dispatcher.registerCommand(VersionCommand.class);
      dispatcher.registerDispatcher("gitblit", gitblitCmd);
      SshCommandFactory commandFactory = new SshCommandFactory(
            new RepositoryResolver<SshSession>(gitblit),