这个问题在其他地方得到了明确的回答,但它根本不适合我。我也可以看到很多人对此有问题。
我正在尝试bitmart
在我自己的项目中使用 CCXT 的一个分支(分支名称是),因为它包含一些尚未与原始项目合并的重大更改ccxt/ccxt
git 版本:2.20.1
作曲家版本 1.7.2
我的项目中的作曲家文件如下所示:
"repositories": [{
"type": "vcs",
"url": "git@github.com:devsi/ccxt"
}],
"require": {
"ccxt/ccxt": "dev-bitmart as 1.18.409"
}
我已经尝试了 https url :https://github.com/devsi/ccxt
它仍然无法正常工作。
我已经尝试删除版本约束,而是尝试读取 CCXT 中的每个版本。处理时间将需要数小时。它每秒大约执行 1 次。
Reading composer.json of ccxt/ccxt (1.17.378)
Reading composer.json of ccxt/ccxt (1.17.377)
Reading composer.json of ccxt/ccxt (1.17.376)
等等。
指定版本时,我收到的错误是:
Failed to clone the git@github.com:devsi/ccxt.git repository,
try running in interactive mode so that you can enter your GitHub credentials
[RuntimeException]
Failed to execute git clone --mirror 'git@github.com:devsi/ccxt.git' '/root/.composer/cache/vcs/git-github.com-devsi-ccxt.git/'
我究竟做错了什么?