Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试着做一个网站来提供一些服务器,比如有目的的协作写作。但我不会创造同样的轮子。所以我选择 git 作为 VCS(版本控制系统)使用dulwich。dulwich 的一切都很好,但我没能找到 git 命令的解决方案,比如 'merge' 或 'rebase' 到处理程序分支。有人可以帮助提供一些使用 dulwich 合并和变基 git 分支的提示或示例吗?谢谢!
正如 Gary 所提到的,dulwich 不提供合并或变基支持,因为要很好地实现这一点很重要。
一种选择是只为合并和变基而掏腰包。
最终,我们希望 Dulwich 支持使用其他合并实现,例如耐心差异,而不是从头开始重做合并。