Drupal 的版本控制是什么?
我开始需要在更大的网站上与多人一起工作,所以我知道我需要开始使用某种版本控制。咕噜咕噜。虽然我理解并使用功能和上下文将配置信息放入代码而不是数据库中,但我仍然对应该使用哪种版本控制系统感到困惑?使用GIT有什么优势吗?还是颠覆?尤其是在工作流程方面。
我对版本控制“概念上”和实际上仍然很陌生,所以我什至不确定我需要设置什么。我也希望能够在本地使用版本控制。
I am starting to need to work on bigger sites and with multiple people so I know I need to start using some kind of version control. GRRR. While I understand and use Features and Context to put config info into code instead of the DB, I am still confused about what version control system I should use? Is there any advantage to using GIT? or Subversion? Especially in terms of workflow.
I am still pretty new to version control "conceptually" and practically so I am not even sure what I need to setup. I'd like to be able to use version control locally as well.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这种情况下,请使用 Git 或其他一些 DVCS。 SVN 是集中式的,不允许您进行任何本地提交。
我还建议使用 Git,原因是 whygitisbetterthanx.com 上列出的原因(分支和本地提交),但是这是主观的。
In that case use Git or some other DVCS. SVN is centralized and will not allow you to make any local commits.
I would also suggest Git for the reasons listed on whygitisbetterthanx.com (branching and local commits), this however is subjective.