将忽略标签添加到文件中,这样就不会意外地将其添加到存储库中?
我在一个项目中使用 Mercurial。我想忽略项目文件夹中的文件,以便它不会意外添加到源代码管理中。看起来像:
/myproject
/src
private.cpp
public.cpp
所以我想明确禁止添加 private.cpp,这可能吗?
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 hgignore 文件指定自动操作时忽略的文件 (就像
hg addremove
)。这不会阻止某人通过hg add src/private.cpp
显式添加文件。您必须使用 hooks 来完全阻止包含该文件的提交。You can use the hgignore file to specify files that are ignored for automatic operations (like
hg addremove
). This won't stop someone from explicitly adding the file viahg add src/private.cpp
. You would have to use hooks to completely block commits containing that file though.当然有可能。您需要将要忽略的路径添加为该存储库的 .hgignore 文件中的过滤器。在上面,如果您的“myproject”文件夹是存储库,请在其中添加 .hgignore,并在其中添加以下行:
有关如何使用 .hgignore 文件的更多信息,请查看 此处。
Sure it's possible. You need to add the path you wish to ignore as a filter in your .hgignore file for that repository. In the above, if your "myproject" folder is the repository, add the .hgignore there with this line in it:
For more information on how to use the .hgignore file look here.