How do I create nested repositories in GitHub?

我的梦境 提交于 2019-12-03 05:54:39

问题


I am able to create a repository via https://github.com/ (say repo) and have:

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

How do I create another repository (say sub_repo) placed under repo and expectedly have:

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

回答1:


GitHub does not allow nested repositories (IIRC Git doesn't allow this for bare repositories).

However, you can use submodules to nest repositories on the "client side" in the working tree.

You need to clone the parent directory.

Then, add the sub-repository as a submodule:

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

The sub_repo module will then be linked to the parent repo and can be found in the sub_repo directory.

Commit (.gitmodules and sub_repo), push and you're done.




回答2:


github does not support nesting repositories. If you don't want to have absolute urls for submodules the custom is to place them next to super-repository and use "../" in urls, like here: https://github.com/losalamos/cinch-nested-example/blob/d59c26a89153148ba29d68dd5ee455a88efbc9a2/.gitmodules



来源:https://stackoverflow.com/questions/35043733/how-do-i-create-nested-repositories-in-github

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!