如何使 .gitignore 忽略没有扩展名的已编译文件?
可能的重复:
没有二进制文件的 gitignore
编辑:复制 没有二进制文件的 gitignore
当你编译一个 Haskell 文件时, (test.hs
),使用ghc --make test.hs
,结果是test.hi
和test
>。我只想添加并提交源 test.hs
,同时将 test.hi
和 test
保留在存储库之外,但位于同一目录中作为源文件。 test
是问题,如何指定 .gitignore 忽略没有扩展名的已编译文件?
Possible Duplicate:
gitignore without binary files
Edit: Dupe of gitignore without binary files
When you compile, say, a Haskell file, (test.hs
), using ghc --make test.hs
, the result is test.hi
and test
. I only want to add and commit the source test.hs
, while keeping test.hi
and test
out of the repository but in the same directory as the source file. test
is the problem, how do I specify to .gitignore to ignore a compiled file with no extension?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将文件名添加到您的
.gitignore
文件中即可。例如:.gitignore
不关心扩展名。它只是匹配模式。Just add the filename to your
.gitignore
file. For example:.gitignore
doesn't care about extensions. It just matches patterns.