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