来自另一个存储库的目录的 Git 子模块
是否可以创建一个不直接链接到存储库而是链接到其中的目录的子模块?
例如,让 fw.git 成为一个框架存储库,具有以下目录:
|fw.git
\---|test
|code
|tools
我想对框架代码进行子模块,只是 code
目录,而不是其他目录。
Is it possible to create a submodule that does not link to a repository directly, but to a directory inside it?
For example, let fw.git be a framework repository, with these dirs:
|fw.git
\---|test
|code
|tools
I'd like to submodule the framework code, just the code
directory, not other directories.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,这是不可能的。 Linus 故意让 git 不那样工作。
No, it's not possible. Linus intentionally made git not work like that.