如何将 Symfony 框架与 Mercurial 一起使用?

发布于 2024-09-15 20:24:05 字数 76 浏览 5 评论 0原文

我开始使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

追风人 2024-09-22 20:24:05

您需要记住两件事:

第一:将 .hgignore 文件放在项目的根文件夹中。将以下内容放入此文件中:

.project
^cache$
^log$
web/uploads
nbproject

仅当您使用 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:

.project
^cache$
^log$
web/uploads
nbproject

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 :-)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文