可以将 Composer 配置为使用 http git clone git@
can be configure Composer to use http instead git clone git@
我们正在使用一些带有 satis 的私有存储库,首先尝试使用 git clone @git 下载代码,然后尝试使用 git clone http 下载代码://....
有什么方法可以将作曲家配置为与私有存储库一起使用 git 默认情况下克隆 http?
谢谢。
奥斯卡
你可以试试,为了测试:
git config --global url."https://github.com/".insteadOf git@github.com:
git config --global url."https://".insteadOf git://
这将确保任何使用 git 克隆的系统(如 Composer)都将使用 HTTPS URL 而不是 SSH。
我们正在使用一些带有 satis 的私有存储库,首先尝试使用 git clone @git 下载代码,然后尝试使用 git clone http 下载代码://....
有什么方法可以将作曲家配置为与私有存储库一起使用 git 默认情况下克隆 http?
谢谢。
奥斯卡
你可以试试,为了测试:
git config --global url."https://github.com/".insteadOf git@github.com:
git config --global url."https://".insteadOf git://
这将确保任何使用 git 克隆的系统(如 Composer)都将使用 HTTPS URL 而不是 SSH。