We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 78b500b + 8b2ad59 commit 0d84de0Copy full SHA for 0d84de0
src/transport.c
@@ -87,10 +87,10 @@ static int transport_find_fn(
87
/* For other systems, perform the SSH check first, to avoid going to the
88
* filesystem if it is not necessary */
89
90
- /* It could be a SSH remote path. Check to see if there's a :
91
- * SSH is an unsupported transport mechanism in this version of libgit2 */
+ /* It could be a SSH remote path. Check to see if there's a : */
92
if (!definition && strrchr(url, ':')) {
93
- // re-search transports again with ssh:// as url so that we can find a third party ssh transport
+ /* re-search transports again with ssh:// as url
+ * so that we can find a third party ssh transport */
94
definition = transport_find_by_url("ssh://");
95
}
96
0 commit comments