Authentication failed error when adding repository with SSH auth

I am trying to add repository via Xcode > Settings > Accounts and I am stuck on the proper address. Address of our repo is quite simple: my.domain.com:port/project-name. Authentication via SSH Keys. Could someone help me to understand what's going on here? See screenshot below.

By the way running git clone git+ssh://git@my.domain.com:port/project-name works fine.

在这里输入图像描述

EDIT

Running git clone without git+ssh//

git clone git@my.domain.cz:2222/project-name

or

git clone git@my.domain.cz:22/project-name

is giving me same error:

ssh: connect to host my.domain.cz port 22: Connection refused

fatal: Could not read from remote repository

Please make sure you have the correct access rights and the repository exists.


Xcode accepts just ssh://git@my.domain.cz:2222/project-name .

The git protocol is somehow redundant in this case. Raw git tools don't have a problem with it, but Xcode does not like it for some reason.

链接地址: http://www.djcxy.com/p/16420.html

上一篇: git子模块更新

下一篇: 使用SSH身份验证添加存储库时验证失败错误