使用 hgignore 忽略 Linux 可执行文件

发布于 2024-11-18 23:16:30 字数 149 浏览 1 评论 0原文

我正在尝试正确设置 .hgignore,但遇到一些问题。我不想在未添加的文件列表中看到可执行文件。

在 Windows 上,这非常简单:*.exe。在 Linux 上,可执行文件通常没有扩展名。那么如何设置一个过滤器来忽略没有扩展名的文件呢?

I'm trying to set up .hgignore correctly, but I'm having some problems. I don't want to see executables in my list of unadded files.

On Windows, this is very easy: *.exe. On Linux, executables typically do not have an extension. So how do you set up a filter that will ignore files that have no extension?

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

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

发布评论

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

评论(2

杀手六號 2024-11-25 23:16:30

没有办法做到这一点。您可以相对轻松地构建现有可执行文件的列表,并将它们自动添加到您的 .hgignore,但新文件仍会显示为未跟踪。

There's no way to do it. You could, relatively easily, build a list of the executable files that exist now and automatically add them to your .hgignore but new ones will still show up as un-tracked.

暖风昔人 2024-11-25 23:16:30

我偶尔会调整我的项目构建文件(Makefile、.sconstructs 等)以将 UNIX 可执行文件构建为 foo.x 而不是 foo,只是为了更容易自动忽略它们。

I have occasionally tweaked my project build files (Makefiles, .sconstructs, etc.) to build UNIX executables as foo.x rather than foo, just to make automatically ignoring them easier.

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