可以将Composer配置为使用http代替git clone git @

时间:2019-04-02 14:35:10

标签: git composer-php git-clone

我们正在使用一些带有satis的私有存储库,首先尝试使用git clone @git下载代码,然后尝试使用git clone http:// ....

默认情况下,有什么方法可以配置composer与私有存储库git clone http一起使用吗?

谢谢。

奥斯卡

1 个答案:

答案 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。