0

所以,我已经搞砸了一段时间了,但 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 连接仍然没有任何问题,但我认为我的问题归结为我对主机和主机名如何工作的一些误解,可能?不太确定,manssh_config 和 ssh 的页面没有什么特别突出的。

由于工作相关的原因,主要是我们的VPN有点不稳定,我需要使用端口443。

奇怪的是,ssh 不能使用github.comas 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>originor来连接origin2

但是,如果不指定sshCommandto 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 命令中指定它,它也会忽略它。这就是让我相信我对如何hosthostname工作有一些误解,或者有一些不言而喻的行为导致了这种情况的原因。

我也曾经ssh -vvvT <remote>尽可能地冗长,并且如前所述,普通 ssh 完全可以正常工作。无论命令运行时我在目录树中的哪个位置,无论host我调用的是哪个,它都可以正常工作。git这就是为什么我很困惑,因为当涉及到这个过程时它不起作用。

也只安装了 OpenSSH,所以我认为它不应该是一个冲突的 ssh 客户端。

现在,我只需添加一个sshCommand每个 repogit配置就可以了,但是,通过这样做,实际上有一个 ssh 配置没有什么意义,因为 Github 不支持 shell 访问并且在我的机器上工作时它没有被大量使用目前不用于任何其他适当的 ssh-ing。

在过去两周左右的时间里,我一直在为此挠头,但我已经放弃了一半,并决定至少尝试发布一个关于这个的问题,因为其他人都喜欢这个(至少在标题上)还没有解决我的问题。希望这里有人知道出了什么问题并可以告诉我如何解决它,或者至少将我指向一些文档或解释我做错了什么的东西。

4

1 回答 1

0

正如我所假设的那样,这是基于遥控器之间host和遥控器hostname之间的性质的误解git。虽然老实说,我并没有真正找到正确解释这就是它们相互交互的方式。

就像我在第一篇文章中提到的那样,我必须附加ssh.到正常git@github.com:user/repo的.github.comssh.github.com.ssh/config

如果你.ssh/config是:

host test
        Hostname ssh.github.com
        User git
        Port 443
        IdentityFile ~/.ssh/id_ed25519-test.github
        IdentitiesOnly yes

并且您的 GitHub 用户名是user并且您的存储库是test,您git remote将不是git@github.com:user/test.gitgit@ssh.github.com:user/test.git。它将是git@test:user/test(在此示例中)。换句话说:git@<ssh config host>:<username on remote>/<remote repo name>,这是因为当它调用时.ssh/config host它实际上读取hostname了配置下定义的host

最后要注意的一件事是,就我而言,由于我们的网络是如何设置的以及 VPN 如何与之交互,我仍然需要使用ssh.github.comhostname端口443才能连接。

于 2021-02-11T12:33:56.090 回答