ssh-push: Don't add '/' to pathname Paths in the host:path notation are usually interpreted relative to the login directory rather than relative to the root directory. Signed-off-by: Sven Verdoolaege <skimo@liacs.nl> --- commit 508f3a7ad9d940529ad6736763108fe5c7729171 tree 7332f4cd8f29f0548821f1d0501b2e9a45ae502a parent 200b82de27633d2c85a4358e1be5ae7fab1b077f author Sven Verdoolaege <skimo@liacs.nl> Tue, 14 Jun 2005 12:34:49 +0200 committer Sven Verdoolaege <skimo@liacs.nl> Tue, 14 Jun 2005 12:34:49 +0200 rsh.c | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/rsh.c b/rsh.c --- a/rsh.c +++ b/rsh.c @@ -31,14 +31,15 @@ int setup_connection(int *fd_in, int *fd } else { host = url; path = strchr(host, ':'); + if (path) + *(path++) = '\0'; } if (!path) { return error("Bad URL: %s", url); } - *(path++) = '\0'; - /* ssh <host> 'cd /<path>; stdio-pull <arg...> <commit-id>' */ + /* ssh <host> 'cd <path>; stdio-pull <arg...> <commit-id>' */ snprintf(command, COMMAND_SIZE, - "%s='/%s' %s", + "%s='%s' %s", GIT_DIR_ENVIRONMENT, path, remote_prog); posn = command + strlen(command); for (i = 0; i < rmt_argc; i++) { - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Tue Jun 14 20:38:49 2005
This archive was generated by hypermail 2.1.8 : 2005-06-14 20:38:50 EST