0


Git clone 指定端口

问题

通过

222

端口克隆

git@localhost:wzy/test.git

出现问题:

Cloning into 'test'...
ssh: connect to host localhost port 22: Connection refused
fatal: Could not read from remote repository.

方法1

Http 方法

git clone http://localhost:3000/wzy/test.git

其中 3000 是Http端口号

方法2

SSH 方法

git clone ssh://git@localhost:222/wzy/test.git
标签: git github ssh

本文转载自: https://blog.csdn.net/C_C666/article/details/130693991
版权归原作者 wzy-666 所有, 如有侵权,请联系我们删除。

“Git clone 指定端口”的评论:

还没有评论