使用 hgignore 忽略 Linux 可执行文件
我正在尝试正确设置 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有办法做到这一点。您可以相对轻松地构建现有可执行文件的列表,并将它们自动添加到您的 .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.
我偶尔会调整我的项目构建文件(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.