在大型团队中使用 git VS Mercurial 和 Xcode 进行 iOS 开发有何优缺点?
我们希望在一个项目上一起工作,签出/签入文件。
一些开发人员推荐 git,其他开发人员更喜欢 Mercurial。有没有人对这两者都有经验,并且能告诉我为什么我应该花时间在不与 Xcode 集成的 Mercurial 上,而不是只使用集成的 git ?
使用 git 代替 Mercurial 有什么好处? 当我使用 Mercurial 而不是 git 时有什么好处?
最后但并非最不重要的一点是:是否有一个快速指南,展示如何设置 git,以便多台机器和应用程序能够使用 git。 Xcode 可以开始处理同一个项目吗?
大= 5 人(是的,对我来说这真的很大);)
We want to work together on one project, checking out/in files.
Some devs recommend git, others prefer Mercurial. Does anyone have experience with both and can tell why I should spent time on Mercurial which doesn't integrate with Xcode rather than just using git which does integrate?
What are the benefits when I would use git instead of Mercurial?
And what are the benefits when I would use Mercurial instead of git?
Last but not least: Is there a quick guide that shows how to set up git so that multiple machines & Xcodes can start working on the same project?
big = 5 people (yeah, for me that is huge, really) ;)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
git 和 Mercurial 本质上非常相似。它们都是 DVCS,只有细微的差别。
请参阅:http://hginit.com/ 以获得良好的快速概述和设置。
检查您是否喜欢它与 Mercurial 的配合方式,
请在此处查看它们的细微差别:https://www.mercurial-scm.org/wiki/GitConcepts
还有一些来自另一方的观点: http://whygitisbetterthanx.com/
上手非常容易两个都。
我更喜欢 Mercurial,因为它很容易安装在头上。基本的操作就够了。 git 中命令变体的数量之多常常让我望而却步。感觉多了几分任性。
然而,正如你所指出的。 Xcode 集成可以成为您的差异化因素。
git and Mercurial are very similar in nature. They are both DVCS and have subtle differences only.
See : http://hginit.com/ for a good fast overview and setup.
Check if you like how it is going to be working with Mercurial
See their subtle differences here : https://www.mercurial-scm.org/wiki/GitConcepts
And also some views form the other side : http://whygitisbetterthanx.com/
It is very easy to get started on both.
I prefer Mercurial because it is easy to fit in the head. The basic operations suffice. The sheer number of command variations in git usually puts me off. It feels a bit more indulgent.
How ever, as you have noted. Xcode integration can be a differentiating factor for you.