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://?


- Mod使用GET变量将子域重写为PHP 2021-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- Laravel 仓库 2022-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01