git 克隆错误 - 无法确定主机的真实性
git clone error - The authenticity of host can't be established
将 git 存储库克隆到新电脑时遇到问题。
在新电脑上,我运行ssh_keygen如下
ssh-keygen -t rsa -C "laptop"
然后我使用以下方法将其复制到剪贴板:
cat ~/.ssh/id_rsa.pub > /dev/clipboard
然后我去了 git实验室配置文件设置并添加了一个 ssh 密钥。
当我尝试从 intellij 克隆时,我得到
clone failed. Could not read from remote repository
当我 运行 从 cli git 克隆时使用
git clone git@mygitlab:myproj/myproj.git
我明白了
The authenticity of host 'ilgitlab (10.10.0.158)' can't be
established.
当我选择 'yes' 时初始克隆成功,但与 Intellij 的集成表现不佳。
我正在使用 vpn (cisco anyconnect)。
是的,如果第一个克隆将密钥添加到已知主机,您应该手动执行第一个,然后第二个和后续应该顺利通过,
应该是这样一条消息:
将 git 存储库克隆到新电脑时遇到问题。
在新电脑上,我运行ssh_keygen如下
ssh-keygen -t rsa -C "laptop"
然后我使用以下方法将其复制到剪贴板:
cat ~/.ssh/id_rsa.pub > /dev/clipboard
然后我去了 git实验室配置文件设置并添加了一个 ssh 密钥。
当我尝试从 intellij 克隆时,我得到
clone failed. Could not read from remote repository
当我 运行 从 cli git 克隆时使用
git clone git@mygitlab:myproj/myproj.git
我明白了
The authenticity of host 'ilgitlab (10.10.0.158)' can't be established.
当我选择 'yes' 时初始克隆成功,但与 Intellij 的集成表现不佳。
我正在使用 vpn (cisco anyconnect)。
是的,如果第一个克隆将密钥添加到已知主机,您应该手动执行第一个,然后第二个和后续应该顺利通过,
应该是这样一条消息: