gpt4 book ai didi

docker - Git 2.8 无法更新子模块

转载 作者:行者123 更新时间:2023-12-02 19:28:26 24 4
gpt4 key购买 nike

我正在尝试 build gRPC在 docker 镜像中,但在使用 git 2.8 版时更新子模块失败。特别是这个 Dockerfile:

FROM alpine:3.3
RUN apk update && apk add git
RUN git clone -b 'v1.17.1' --depth 1 https://github.com/grpc/grpc
RUN git --version
RUN cd grpc && git submodule update --init --depth 1

显示 git version 2.8.6并引发以下错误
Cloning into '/grpc/third_party/abseil-cpp'...
error: no such remote ref cc4bed2d74f7c8717e31f9579214ab52a9c9c610

如果我切换到 alpine:3.8我得到 git version 2.18.1并且构建成功。这是早期版本的 git 中的错误吗?有解决方法吗?

笔记:
  • 我指定 --depth 1因为我不需要提交历史。
  • 我有一些不相关的限制,这使得很难使用更新的版本。
  • 最佳答案

    正如您在“How to make shallow git submodules? ”中看到的,自 Git 2.8 以来已经进行了多次演变。

    如果可用,请尝试仅使用一个步骤:

    git clone -b 'v1.17.1' --recurse-submodule --depth 1 https://github.com/grpc/grpc 

    关于docker - Git 2.8 无法更新子模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54000895/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com