Git,拉入另一个存储库的一部分

发布于 2024-09-29 09:37:04 字数 220 浏览 1 评论 0原文

假设有两个存储库 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陈年往事 2024-10-06 09:37:04

您可以使用符号链接和 git 子模块来执行此操作: http://chrisjean.com/2009/04/20/git-submodules-adding-using-removing-and-updating/

请注意,您仍然必须将整个项目树作为子模块拉入,所以如果您是试图节省空间,这不会有帮助,你需要一些其他的解决方案。

例如(假设是 *nix 系统),在项目 Y 内部:

mkdir .include
git submodule add git@mygithost:X .include/X
ln -sf .include/X/B F

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:

mkdir .include
git submodule add git@mygithost:X .include/X
ln -sf .include/X/B F
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文