所以,我已经搞砸了一段时间了,但 git 仍然在起作用。虽然 ssh 现在工作得很好,但 git 似乎忽略了我的 ssh 配置,但我至少知道当我在相关存储库中使用 a 指定端口和密钥时它可以sshCommand
工作.git/config
。
纯 ssh 使用配置文件工作得很好,但是,我使用的是 Github 部署密钥,所以我的 ssh 配置看起来更像这样:
host test
Hostname ssh.github.com
User git
Port 443
IdentityFile ~/.ssh/id_ed25519-test.github
IdentitiesOnly yes
host test2
Hostname ssh.github.com
User git
Port 443
IdentityFile ~/.ssh/id_ed25519-test2.github
IdentitiesOnly yes
使用 ssh 连接仍然没有任何问题,但我认为我的问题归结为我对主机和主机名如何工作的一些误解,可能?不太确定,man
ssh_config 和 ssh 的页面没有什么特别突出的。
由于工作相关的原因,主要是我们的VPN有点不稳定,我需要使用端口443。
奇怪的是,ssh 不能使用github.com
as Hostname
,只有当它是ssh.github.com
. 我在连接它时遇到了问题,只是在 Github 文档的一个示例中遇到了这个问题,但没有提到。对其进行了测试,此后一直运行良好。
这也适用于 git repo 中的远程,因为我也需要在ssh.
那里附加。git remote add orgin git@github.com:user/test.git
不起作用,但git remote origin2 git@ssh.github.com:user/test.git
确实如此。我已经测试了 git 是否可以通过运行git remote show <remote>
并替换<remote>
为origin
or来连接origin2
。
但是,如果不指定sshCommand
to be sshCommand = ssh -p 443 -i ~/.ssh/id_ed25519-test.github
,它将不会连接。
我试过用这个调试:
GIT_TRACE=true \ at 11:17:27
GIT_CURL_VERBOSE=true \
GIT_SSH_COMMAND="ssh -vvv" \
GIT_TRACE_PACK_ACCESS=true \
GIT_TRACE_PACKET=true \
GIT_TRACE_PACKFILE=true \
GIT_TRACE_PERFORMANCE=true \
GIT_TRACE_SETUP=true \
GIT_TRACE_SHALLOW=true \
git remote show <remote>
在使用git
时,虽然我有时会删除它的GIT_SSH_COMMAND="ssh -vvv" \
一部分,因为它似乎覆盖了 git 配置文件,我想这并不奇怪。
如果我在调试 ssh_command 中指定密钥,它至少会选择那个,但它仍在尝试通过端口 22 连接到 Github。这是日志:
11:20:17.116821 trace.c:375 setup: git_dir: .git
11:20:17.116867 trace.c:376 setup: git_common_dir: .git
11:20:17.116872 trace.c:377 setup: worktree: /home/user/code/test
11:20:17.116874 trace.c:378 setup: cwd: /home/user/code/test
11:20:17.116877 trace.c:379 setup: prefix: (null)
11:20:17.116879 git.c:439 trace: built-in: git remote show test
11:20:17.117075 run-command.c:663 trace: run_command: unset GIT_PREFIX; 'ssh -vvv' git@ssh.github.com 'git-upload-pack '\''github-user/test.git'\'''
OpenSSH_8.2p1 Ubuntu-4ubuntu0.1, OpenSSL 1.1.1f 31 Mar 2020
debug1: Reading configuration data /home/user/.ssh/config
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: include /etc/ssh/ssh_config.d/*.conf matched no files
debug1: /etc/ssh/ssh_config line 21: Applying options for *
debug2: resolving "ssh.github.com" port 22
debug2: ssh_connect_direct
debug1: Connecting to ssh.github.com [140.82.121.35] port 22.
debug1: Connection established.
debug1: identity file /home/user/.ssh/id_rsa type -1
debug1: identity file /home/user/.ssh/id_rsa-cert type -1
debug1: identity file /home/user/.ssh/id_dsa type -1
debug1: identity file /home/user/.ssh/id_dsa-cert type -1
debug1: identity file /home/user/.ssh/id_ecdsa type -1
debug1: identity file /home/user/.ssh/id_ecdsa-cert type -1
debug1: identity file /home/user/.ssh/id_ecdsa_sk type -1
debug1: identity file /home/user/.ssh/id_ecdsa_sk-cert type -1
debug1: identity file /home/user/.ssh/id_ed25519 type -1
debug1: identity file /home/user/.ssh/id_ed25519-cert type -1
debug1: identity file /home/user/.ssh/id_ed25519_sk type -1
debug1: identity file /home/user/.ssh/id_ed25519_sk-cert type -1
debug1: identity file /home/user/.ssh/id_xmss type -1
debug1: identity file /home/user/.ssh/id_xmss-cert type -1
debug1: Local version string SSH-2.0-OpenSSH_8.2p1 Ubuntu-4ubuntu0.1
如您所见,它完全跳过了~/.ssh/config
定义。即使我在 ssh 命令中指定它,它也会忽略它。这就是让我相信我对如何host
和hostname
工作有一些误解,或者有一些不言而喻的行为导致了这种情况的原因。
我也曾经ssh -vvvT <remote>
尽可能地冗长,并且如前所述,普通 ssh 完全可以正常工作。无论命令运行时我在目录树中的哪个位置,无论host
我调用的是哪个,它都可以正常工作。git
这就是为什么我很困惑,因为当涉及到这个过程时它不起作用。
也只安装了 OpenSSH,所以我认为它不应该是一个冲突的 ssh 客户端。
现在,我只需添加一个sshCommand
每个 repogit
配置就可以了,但是,通过这样做,实际上有一个 ssh 配置没有什么意义,因为 Github 不支持 shell 访问并且在我的机器上工作时它没有被大量使用目前不用于任何其他适当的 ssh-ing。
在过去两周左右的时间里,我一直在为此挠头,但我已经放弃了一半,并决定至少尝试发布一个关于这个的问题,因为其他人都喜欢这个(至少在标题上)还没有解决我的问题。希望这里有人知道出了什么问题并可以告诉我如何解决它,或者至少将我指向一些文档或解释我做错了什么的东西。