如何同步多个代码库之间的更改?
假设我想创建一个聊天应用程序的衍生产品,并使用不同的名称、不同的 UI 和一些更改的功能。如果将这些代码库之间的同步更改为 80% 相同,将如何进行更改?
编辑:已经使用git。
Let's say I want to create a spinoff of a chat application branded under a different name, different UI, and some changed features. How would one sync changes between these to codebases which are 80% the same?
EDIT: Already use git.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个非常普遍的问题,任何基础软件工程课程都应该涵盖这个问题。
我将从:
有整个领域的专家和产品涉及此主题 - 版本控制和合并。
This is a pretty generic question and one that should be covered in any basic Software Engineering course.
I'd start with:
There is a whole field of experts and products on this topic - revision control and merging.
如果分布式代码存储库通常是单向同步(主要开发推送到衍生项目),您应该考虑使用分布式代码存储库。
Mercurial 是最受欢迎的 DCR 之一
有许多分布式代码存储库系统。该网站提供了一个很好的教程。
You should look into using a distributed code repository, if it is usually a one-way sync (main development pushes to spinoff project).
Mercurial is one of the most popular DCR
There are many distributed code repository systems. The website provide a nice tutorial.