我们正在使用一些私有存储库,并首先尝试使用git clone @git下载代码,并在两次尝试后使用git clone http:// ....下载它。
有没有办法配置作曲家默认使用私有存储库git clone http?
谢谢。
奥斯卡
你可以尝试,测试:
git config --global url."https://github.com/".insteadOf [email protected]:
git config --global url."https://".insteadOf git://
这将确保使用git clone的任何系统(如Composer)都使用HTTPS URL而不是SSH URL。