如何将 Symfony 框架与 Mercurial 一起使用?
我开始使用 Symfony php 框架。
在哪里可以找到有关在 symfony 项目中使用 Mercurial 的信息?
I'm starting to use the Symfony php framework.
Where can I find information about the use of Mercurial in my symfony projects?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要记住两件事:
第一:将 .hgignore 文件放在项目的根文件夹中。将以下内容放入此文件中:
仅当您使用 netbeans 时才需要 nbproject。
第二:目前 Symfony 本身没有 Mercurial 存储库,因此您目前无法使用该框架作为子存储库(顺便说一句:我计划在接下来的几天内在 bitbucket 上设置一个子存储库)。因此,如果您目前正在使用带有 svn:external 的 Symfony,则需要将完整的副本放入 lib/vendor/symfony 文件夹中,
就是这样:-)
There are two things you need to keep in mind:
First: Put an .hgignore file in the root folder of your project. Put the following content in this file:
nbproject is only needed if you are working with netbeans.
Second: At the moment there is no mercurial repository for Symfony itself, so you can not use the framework as a subrepository at the moment (BTW: I'm planning to setup one on bitbucket in the next days). So if you are using Symfony with svn:external at the moment you need to put a complete copy in the lib/vendor/symfony folder
Thats it :-)