您好我正在尝试设置一个带有两个上游的git-repo。
upstream-jointswp:(https://github.com/JeremyEnglert/JointsWP/)
upstream-woocommerce:(https://github.com/woothemes/woocommerce)
当我使用git-subtree时。我如何在我的仓库中检查/上游/模板中的东西到/ woocommerce?
如果我的问题没有像我希望的那样向前发展,请给我一个标志;)
答案 0 :(得分:2)
您应该合并split
和add
。
因此,您克隆了您想要的项目,然后在其中创建一个包含templates/
的分支。即。
git subtree --prefix=templates/ split -b templates_only
然后你可以使用另一个仓库的分支:
git subtree --prefix=woocommerce/ add ../woocommerce_clone/.git templates_only