小编典典

git remote add 与其他 SSH 端口

all

在 Git 中,当我的主机使用不同的 SSH 端口时,如何添加远程源服务器?

git remote add origin ssh://user@host/srv/git/example

阅读 116

收藏
2022-03-24

共1个答案

小编典典

你可以这样做:

git remote add origin ssh://user@host:1234/srv/git/example

1234是否正在使用 ssh 端口

2022-03-24