使用git clone命令clone项目时
如果repository
的SSH
端口是标准22
端口时 ,可以使用如下命令:
git clone ssh://git@hostname:port/…/xxx.git
举例如下:
git clone ssh://git@anspoon.com:8888/var/www/anspoon.git
如果repository
的SSH
端口不是标准22
端口时(例如,SSH tunnel
模式,等等),可以使用如下命令:
git clone ssh://git@hostname:port/.../xxx.git
举例如下:
git clone ssh://git@anspoon.com:8888/root/anspoon.git