将子树切换到不同的远程分支
考虑我的存储库的这一部分:
/
myproject
django -> django/master (django/django @github)
... other dependencies
django 是我按照以下说明合并的子树: 如何使用子树合并策略
现在我发现另一个依赖与django当前的master不兼容,因此我想切换到django/1.1.x 。我该怎么做?
提前致谢。
Consider this part of a repository of mine:
/
myproject
django -> django/master (django/django @github)
... other dependencies
django is a subtree that I merged following this howto: How to use the subtree merge strategy
Now I found out that another dependency is incompatible with the current master of django and I want to switch to django/1.1.x for that reason. How do I do this?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
子模块仅指向提交。检查正确的提交,并将其添加到父模块,然后在父模块中提交。
A submodule merely points at a commit. Check out the proper commit, and add it to the parent module, and commit in the parent.