如何使用作曲家执行浅层克隆



我有以下composer.json

{
    "require": {
        "php": ">=5.2.0",
        "queueit/KnownUser.V3.PHP": "dev-master"
    },
    "config": {
        "autoloader-suffix": "ComposerManager",
        "vendor-dir": "../../../all/libraries/composer"
    },
    "prefer-stable": true,
    "repositories": [
        {
            "type": "package",
            "package": {
                "name": "queueit/KnownUser.V3.PHP",
                "version": "dev-master",
                "source": {
                    "type": "git",
                    "url": "https://github.com/queueit/KnownUser.V3.PHP.git",
                    "reference": "master"
                }
            }
        }
    ]
}

但是当我运行时:

$ composer -vvv update
...
Cloning master
Executing command (CWD): git clone --no-checkout 'https://github.com/queueit/KnownUser.V3.PHP.git' '.../sites/all/libraries/composer/queueit/KnownUser.V3.PHP' && cd '.../sites/all/libraries/composer/queueit/KnownUser.V3.PHP' && git remote add composer 'https://github.com/queueit/KnownUser.V3.PHP.git' && git fetch composer

克隆过程需要很长时间,存储库的大小增长超过 25MB:

$ du -hs ~/.composer/cache/vcs/https---github.com-queueit-KnownUser.V3.PHP.git/
25M ~/.composer/cache/vcs/https---github.com-queueit-KnownUser.V3.PHP.git/

然后,作曲家因超时而停止:

[Symfony\Component\Process\Exception\ProcessTimedOutException]
进程"git clone --no-checkout 'https://github.com/queueit/KnownUser.V3.PHP.git' '.../sites/all/libraries/composer/queueit/KnownUser.V3.PHP' && cd '.../sites/all/libraries/composer/queueit/KnownUser.V3.PHP' && git remote add composer 'https://github.com/queueit/KnownUser.V3.PHP.git' && git fetch composer"超过了300秒的超时。

我认为存储库太大,无法克隆所有 git 对象。


如何使用浅层克隆更快地克隆存储库?

例如,通过将额外的--depth 1--single-branch git 参数传递到 Git 命令中,以便 Composer 可以自动拾取它?

我希望更改在composer.json文件中是自包含的,因此在其他系统上调用此文件时或其他用户在运行composer install时,不需要外部配置。

官方不支持使用 Composer 的浅层克隆(没有任何修补(,因为 git 参数是硬编码的。

已经有一个功能请求来添加以下内容:添加对 git 浅层克隆的支持。但是,实现此功能可能会导致一些问题(例如,如果深度不是那么高,则无法到达锁定的提交@stof等(。

此外,还有一个拉取请求,它试图通过添加额外的--git-clone-depth参数来实现浅层克隆(测试显示了一些不错的结果(。但是,由于使用缓存的 git 克隆速度更快,因此更改已被放弃。


对于快速黑客,可以在src/Composer/Downloader/GitDownloader.php中以doDownload()编辑 git 参数,例如通过更改此行中的--depth 1 --single-branch

$command = 'git clone --no-checkout ...'

或者找到将深度 1 设置应用到 git 配置中的方法。


对于较大的存储库,最简单的解决方法(没有任何技巧(是通过指定变量来增加超时,例如:

COMPOSER_PROCESS_TIMEOUT=0 composer install

相关内容

  • 没有找到相关文章

最新更新