Git 链接到存储库文件夹
我确实有一个问题:如何在 git 存储库中链接到另一个存储库的文件夹。
我有以下结构:
存储库一
.git
文件夹 A
文件夹 B
存储库二
.git
文件夹 C
文件夹 D
所以我现在想要的是,在我的存储库一及其文件夹 B 中,引用存储库二的文件夹 D。 重要的是我没有引用整个存储库 C,而只是引用它的文件夹 D。
我真的很感激任何帮助!
提前致谢 亚历克斯
I do have a question: How can I link within a git repository to a folder of another repository.
I have the following structure:
Repository One
.git
Folder A
Folder B
Repository Two
.git
Folder C
Folder D
So what I now want is, that within my repository One and its Folder B, Folder D of Repository Two is referenced.
It's important that I do not reference the whole repository C, but just the Folder D of it.
I would really appreciate any help!
Thanks in advance
Alex
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的操作系统支持(甚至 Windows 从 Vista 开始也支持),最简单的方法是使用符号链接从文件夹
B
引用文件夹D
。但是您可以将两个存储库分开维护。
git submodule 不会适合您的情况,因为它将所有存储库称为模块。
The simplest way, if your Os supports it (and even Windows does since Vista), is to use a symlink for referring to folder
D
from folderB
.But you would maintain the two repos separate.
git submodule wouldn't be adapted to your case, since it refers to the all repo as a module.