我正试图进入我的远程仓库。但我总是这样:
Account not found.
fatal: The remote end hung up unexpectedly
我在做“git remote show origin”时得到了相同的响应。 当我做git remote -v时我得到了这个:
origin sls@slsapp.com:1234/fitzler/fitzler-web-app.git (fetch)
origin sls@slsapp.com:1234/fitzler/fitzler-web-app.git (push)
我也尝试过ssh成功:
$ ssh sls@slsapp.com
Enter passphrase for key '/c/Users/jacobrohde/\.ssh\id_rsa':
Hi there! You are good to go. Just start pushing and pulling :)
Connection to slsapp.com closed.
这里有什么不妥?
答案 0 :(得分:0)
指定遥控器时,通常会写:
user@host:repro
在您的情况下,您的主机使用您必须通过:port
添加的其他端口,这会强制您使用更明确的方式:
ssh://user@host:port/repro
另见: git remote add with other SSH port
您还可以查看man git fetch
:
GIT网址 通常,URL包含有关传输协议的信息 远程服务器的地址以及存储库的路径。根据 在传输协议上,某些信息可能不存在。
Git natively supports ssh, git, http, https, ftp, ftps, and rsync protocols. The following syntaxes may be used with them: · ssh://[user@]host.xz[:port]/path/to/repo.git/ [...] An alternative scp-like syntax may also be used with the ssh protocol: · [user@]host.xz:path/to/repo.git/