James Moger
2014-05-22 fd8cea4761b5382f23d06ed52608d1f556c4dbe5
src/main/java/com/gitblit/transport/ssh/git/BaseGitCommand.java
@@ -86,10 +86,9 @@
      repository = repository.replace('\\', '/');
      // ssh://git@thishost/path should always be name="/path" here
      //
      if (!repository.startsWith("/")) {
         throw new Failure(1, "fatal: '" + repository + "': not starts with / character");
      if (repository.startsWith("/")) {
         repository = repository.substring(1);
      }
      repository = repository.substring(1);
      try {
         return repositoryResolver.open(getContext().getClient(), repository);
      } catch (Exception e) {