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://?
基础教程推荐
- 超薄框架REST服务两次获得输出 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01