我在共享主机上(严重错误)。我已将其插入并尝试从bitbucket.org克隆一个私有存储库:
git clone [email protected]:MyStuff/private-repository.git
但面对此问题:
套接字:协议不支持的地址族
ssh:连接到主机bitbucket.org端口22:协议不支持的地址族
现在正在查看此页面:https://forums.gentoo.org/viewtopic-t-127306-start-0.html。我认为也许我需要通过ssh禁用ipv6才能连接到主机。我不能这样做(共享主机)。
有帮助吗?
在这种情况下,我会在SSL上使用克隆,就像这样
git clone https://<repo-url>
另一个不错的技巧,如果您不想每次都输入密码,可以使用凭证助手,如下所示:
git config --global credential.helper cache
git config --global credential.https://github.com.username foo
git clone https://github.com/foo/repository.git
以上操作会使Git每15分钟询问一次您的密码(默认情况下。)。>