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

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

当前回答

你可以这样做:

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

1234为正在使用的SSH端口

其他回答

对于那些编辑。/.git/config的人

[remote "external"]                                                                                                                                                                                                                                                            
  url = ssh://evanc@www.foo.com:11720/aaa/bbb/ccc                                                                                                                                                                                                               
  fetch = +refs/heads/*:refs/remotes/external/* 

最好的答案对我没用。我需要ssh://从乞求。

# does not work
git remote set-url origin user@example.com:10000/aaa/bbbb/ccc.git
# work
git remote set-url origin ssh://user@example.com:10000/aaa/bbbb/ccc.git

您需要编辑~/。ssh / config文件。添加如下内容:

Host example.com
    Port 1234

快速搜索谷歌会显示一些不同的资源,它们比我更详细地解释了它。

1.Git远程添加${shortname} ${url}

2.Git远程删除短名称(是删除远程)

3.Git remote -v(查看当前远程列表)

4.Git推送远程分支

5.git远程重命名A B(重命名A到B)

6.Git远程显示shortname(显示远程信息)

这一切都对我有用。

你可以这样做:

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

1234为正在使用的SSH端口