git-子树检出其他名称下的特定文件夹

git-subtree checkout specific folder under other name

您好,我正在尝试设置一个带有两个上游的 git-repo。

当我使用git-子树时。我如何将我的上游 /templates 中的内容检出到我的存储库中的 /woocommerce?

如果我的问题没有我希望的那么直截了当,请给我一个信号;)

您应该结合 splitadd

因此,您克隆了您想要加入的项目,然后在其中创建一个包含 templates/ 的分支。即

git subtree --prefix=templates/ split -b templates_only

然后你可以使用另一个仓库的分支:

git subtree --prefix=woocommerce/ add ../woocommerce_clone/.git templates_only