可以配置Composer使用http而不是git clone git @

问题描述 投票:2回答:1

我们正在使用一些私有存储库,并首先尝试使用git clone @git下载代码,并在两次尝试后使用git clone http:// ....下载它。

有没有办法配置作曲家默认使用私有存储库git clone http?

谢谢。

奥斯卡

git composer-php git-clone
1个回答
2
投票

你可以尝试,测试:

git config --global url."https://github.com/".insteadOf [email protected]:
git config --global url."https://".insteadOf git://

这将确保使用git clone的任何系统(如Composer)都使用HTTPS URL而不是SSH URL。

© www.soinside.com 2019 - 2024. All rights reserved.