How to force Composer to use https:// instead of git://?(如何强制 Composer 使用 https://而不是 git://?)
问题描述
我有这样的事情
"repositories": [
{
"type": "package",
"package": {
"name": "myrepo",
"version": "dev-master",
"source": {
"url": "https://github.com/me/myrepo.git",
"type": "git",
"reference": "master"
}
}
},
但是当 Composer 拉取 repo 时,.git/config
中的遥控器(origin
和 composer
)被设置为 git://github.com/me/myrepo.git
.
But when Composer pulls the repo, the remotes (origin
and composer
) in .git/config
are set up as git://github.com/me/myrepo.git
.
[remote "origin"]
url = git://github.com/me/myrepo.git
fetch = +refs/heads/*:refs/remotes/origin/*
pushurl = git@github.com:me/myrepo.git
[branch "master"]
remote = composer
merge = refs/heads/master
[remote "composer"]
url = git://github.com/me/myrepo.git
fetch = +refs/heads/*:refs/remotes/composer/*
我无法推送它,因为 Github 不支持 git://
.我必须手动将其更改为 https://
然后推送.我在 URL 中指定了 https://
,但为什么不尊重呢?
I can't push to it, because Github doesn't work with git://
. I have to manually change this to https://
and then push. I specified https://
in the URL, but why isn't this respected?
推荐答案
您可以使用以下命令更改 github 使用的协议:
You can change the protocol used for github with this command:
composer config --global github-protocols https
然后重新安装供应商应该做你想做的事.
Then re-installing vendors should do what you want.
这篇关于如何强制 Composer 使用 https://而不是 git://?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何强制 Composer 使用 https://而不是 git://?


基础教程推荐
- 主题化 Drupal 7 的 Ubercart “/cart"页 2021-01-01
- php 7.4 在写入变量中的 Twig 问题 2022-01-01
- php中的foreach复选框POST 2021-01-01
- 将变量从树枝传递给 js 2022-01-01
- 如何在数学上评估像“2-1"这样的字符串?产生“1"? 2022-01-01
- PHPUnit 的 Selenium 2 文档到底在哪里? 2022-01-01
- 使用 scandir() 在目录中查找文件夹 (PHP) 2022-01-01
- Yii2 - 在运行时设置邮件传输参数 2022-01-01
- Web 服务器如何处理请求? 2021-01-01
- php中的PDF导出 2022-01-01