假设我有一个存储库测试:
test.git
src/
hello/
awesome.c
nice/
cool.c
fun.c
.gitignore
README.md
我想将src/hello/
添加到另一个存储库中(与子模块完全相同,但不是主路径(/src/hello/
代替/
)
test2.git
ok/
hello/ (submodule - links to test/src/hello)
awesome.c
.gitmodules
.gitignore
比如:(测试2 git shell)$ git submodule add https://github.com/username/test/src/hello
1条答案
按热度按时间xkftehaa1#
也许这会有所帮助:
请阅读正式文件:https://git-scm.com/book/en/v2/Git-Tools-Submodules