Explorar el Código

Support username expansion in SSHGitClient

Use same expansion present in TCPGitClient

Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
milki hace 12 años
padre
commit
8e1d3256c5
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      dulwich/client.py

+ 2 - 0
dulwich/client.py

@@ -622,6 +622,8 @@ class SSHGitClient(TraditionalGitClient):
         return self.alternative_paths.get(cmd, 'git-%s' % cmd)
 
     def _connect(self, cmd, path):
+        if path.startswith("/~"):
+            path = path[1:]
         con = get_ssh_vendor().connect_ssh(
             self.host, ["%s '%s'" % (self._get_cmd_path(cmd), path)],
             port=self.port, username=self.username)