将忽略标签添加到文件中,这样就不会意外地将其添加到存储库中?

发布于 2024-08-28 04:54:26 字数 190 浏览 3 评论 0 原文

我在一个项目中使用 Mercurial。我想忽略项目文件夹中的文件,以便它不会意外添加到源代码管理中。看起来像:

/myproject 
   /src
     private.cpp
     public.cpp

所以我想明确禁止添加 private.cpp,这可能吗?

谢谢

I'm using mercurial for a project. I want to ignore a file within the project folder so it cannot be added to source control accidentally. Looks like:

/myproject 
   /src
     private.cpp
     public.cpp

so I want to explicitly ban private.cpp from ever being added, is that possible?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

隔纱相望 2024-09-04 04:54:26

您可以使用 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 via hg add src/private.cpp. You would have to use hooks to completely block commits containing that file though.

作业与我同在 2024-09-04 04:54:26

当然有可能。您需要将要忽略的路径添加为该存储库的 .hgignore 文件中的过滤器。在上面,如果您的“myproject”文件夹是存储库,请在其中添加 .hgignore,并在其中添加以下行:

*\src\private.cpp

有关如何使用 .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:

*\src\private.cpp

For more information on how to use the .hgignore file look here.

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