开发者

Ignore Linux executables with hgignore

开发者 https://www.devze.com 2023-03-17 16:26 出处:网络
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.

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?


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.


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消