我有几个包含不同模块集的应用程序。 模块具有这样的结构:
foo_module
|-foo.php
|---views
|---assets
|---models
|---controllers
“视图”和“资产”目录因应用程序而异。
我需要“application”目录作为“父”存储库,其中包含嵌套的“子”存储库(foo_module目录)。 “视图”和“资产”目录必须属于“父”存储库。申请结构:
application (repository "parent")
foo_module (nested repository "child")
|-foo.php
|---views (belongs to repository "parent")
|---assets (belongs to repository "parent")
|---models
|---controllers
有没有办法在不改变结构的情况下做到这一点?
答案 0 :(得分:2)
父存储库的一种方式是:
符号链接可以进行版本控制,甚至可用于Windows(请参阅“Git Symlinks in Windows”)。