gitlab不能克隆我的git项目到虚拟机
(这是我在这里的第一个问题,显然是强制性的)
因此,今天的问题涉及与新VM的GIT联系... 这是在这台计算机上配置git的方式:
https://gitlabprod.intra.lne.fr/help/help/ssh/index#see-if-you-have-have-have-an-existing-ssh-key-pair git + ssh-keygen生成 +
eval $ (ssh-agent -s) ssh-add <directory>/ssh-file.ssh
ssh -T git@giturl
git config --global http.sslVerify false
,这是我要致命的错误
:无法访问'urltoclone.git/':接收到的http代码407从代理上从代理上进行连接后,
我在其他机器上连接我解决了此问题:
git config --global http.sslVerify false
有人知道如何知道如何知道解决这个问题?
多谢 !!
在其他机器上,我使用以下方式解决了此问题:
git config --global http.sslVerify false
(this is my first question here, and apparently its mandatory)
so, today's problem concern the connection to git from a new VM...
This is how configured git on this machine :
https://gitlabprod.intra.lne.fr/help/ssh/index#see-if-you-have-an-existing-ssh-key-pair
GIT + ssh-keygen generate +
eval $ (ssh-agent -s) ssh-add <directory>/ssh-file.ssh
ssh -T git@giturl
git config --global http.sslVerify false
and this is the error I'm getting
fatal: unable to access 'urltoclone.git/': Received HTTP code 407 from proxy after CONNECT
on other machines I resolved this problem using :
git config --global http.sslVerify false
has anyone an idea how to solve this ?
thanks a lot !!
on other machines I resolved this problem using :
git config --global http.sslVerify false
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http.sslverify false
is:如果您将SSH键添加到SSH-Encent中,那是因为这是因为您想使用SSH URL,
因此,如果您要克隆存储库,请确保其URL以
git@&lt; yourgitlabserver&gt;
开始,假设您的键具有默认名称〜/。 ssh/id_rsa
和〜/.ssh/id_rsa.pub
。http.sslVerify false
is:If you are adding ssh keys to the ssh-agent, it is because you want to use SSH URLs
So if you are trying to clone a repository, make sure its URL starts with
git@<yourGitLabServer>
, assuming that your keys have the default names~/.ssh/id_rsa
and~/.ssh/id_rsa.pub
.