gpt4 book ai didi

git - 如何在 GitHub 中创建嵌套存储库?

转载 作者:IT王子 更新时间:2023-10-29 01:30:40 25 4
gpt4 key购买 nike

我可以通过 https://github.com/ 创建存储库(比如 repo)并有:

https://github.com/username/repo.git

我如何创建另一个存储库(比如 sub_repo)放置在 repo 下并且应该有:

https://github.com/username/repo/sub_repo.git

最佳答案

GitHub 不允许嵌套存储库(IIRC Git 不允许裸存储库这样做)。

但是,您可以使用子模块在工作树的“客户端”嵌套存储库。

您需要克隆父目录。

然后,将子存储库添加为 submodule :

git submodule add https://github.com/username/sub_repo.git

sub_repo 模块将链接到父 repo,可以在 sub_repo 目录中找到。

提交(.gitmodules 和 sub_repo),推送,你就完成了。

关于git - 如何在 GitHub 中创建嵌套存储库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35043733/

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