git: 2.15.1 -> 2.16.0

This commit is contained in:
Tim Steinbach
2018-01-18 09:13:17 -05:00
parent 61a75a1d22
commit b5be5ef364
3 changed files with 26 additions and 45 deletions

View File

@@ -1,21 +1,21 @@
diff --git a/connect.c b/connect.c
index fd7ffe1..20cd992 100644
index c3a014c5b..fbca3262b 100644
--- a/connect.c
+++ b/connect.c
@@ -768,7 +768,7 @@
@@ -1010,7 +1010,7 @@ static void fill_ssh_args(struct child_process *conn, const char *ssh_host,
ssh = getenv("GIT_SSH");
if (!ssh)
- ssh = "ssh";
+ ssh = "@ssh@";
variant = determine_ssh_variant(ssh, 0);
}
ssh = getenv("GIT_SSH");
if (!ssh)
- ssh = "ssh";
+ ssh = "@ssh@";
else
handle_ssh_variant(ssh, 0,
&port_option,
diff --git a/git-gui/lib/remote_add.tcl b/git-gui/lib/remote_add.tcl
index 50029d0..17b9594 100644
index 480a6b30d..781720424 100644
--- a/git-gui/lib/remote_add.tcl
+++ b/git-gui/lib/remote_add.tcl
@@ -139,7 +139,7 @@
@@ -139,7 +139,7 @@ method _add {} {
# Parse the location
if { [regexp {(?:git\+)?ssh://([^/]+)(/.+)} $location xx host path]
|| [regexp {([^:][^:]+):(.+)} $location xx host path]} {