Git,拉入另一个存储库的一部分
假设有两个存储库 X 和 Y,其文件结构如下所示。
X-+
|- /A
|- /B
|- /C
Y-+
|- /E
|- /F
|- /G
我知道可以将 X 拉入 Y 并且 git 会合并文件。是否可以将目录 B 拉入存储库 Y 的目录 F 中?我猜这不是因为 git 不跟踪目录。是否可以通过其他方式使用 git 来实现这一目标?
Say there are two repositories X and Y with a file structure like below.
X-+
|- /A
|- /B
|- /C
Y-+
|- /E
|- /F
|- /G
I know it's possible to pull X into Y and git will merge the files. Is it possible to pull directory B into directory F of repository Y? I'm guessing it isn't because git doesn't track directories. Is it possible to achieve this with git in some other way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用符号链接和 git 子模块来执行此操作: http://chrisjean.com/2009/04/20/git-submodules-adding-using-removing-and-updating/
请注意,您仍然必须将整个项目树作为子模块拉入,所以如果您是试图节省空间,这不会有帮助,你需要一些其他的解决方案。
例如(假设是 *nix 系统),在项目 Y 内部:
You can do this with symlinks and git submodules: http://chrisjean.com/2009/04/20/git-submodules-adding-using-removing-and-updating/
Note you still have to pull in the whole project tree as a submodule so if you are trying to save space, this won't help and you'll need some other solution.
For example (this assumes a *nix system), inside project Y: