我们正在使用一些带有satis的私有存储库,首先尝试使用git clone @git下载代码,然后尝试使用git clone http:// ....
默认情况下,有什么方法可以配置composer与私有存储库git clone http一起使用吗?
谢谢。
奥斯卡
答案 0 :(得分:2)
您可以尝试进行测试:
git config --global url."https://github.com/".insteadOf git@github.com:
git config --global url."https://".insteadOf git://
这将确保任何使用git clone的系统(例如Composer)都将使用HTTPS URL而不是SSH。