如何使 .gitignore 忽略没有扩展名的已编译文件?

发布于 2024-12-07 11:46:19 字数 584 浏览 0 评论 0原文

可能的重复:
没有二进制文件的 gitignore

编辑:复制 没有二进制文件的 gitignore

当你编译一个 Haskell 文件时, (test.hs),使用ghc --make test.hs,结果是test.hitest >。我只想添加并提交源 test.hs,同时将 test.hitest 保留在存储库之外,但位于同一目录中作为源文件。 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 技术交流群。

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

发布评论

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

评论(1

丢了幸福的猪 2024-12-14 11:46:19

只需将文件名添加到您的 .gitignore 文件中即可。例如:

$ git ls-files --other --exclude-standard
test
$ echo test > .gitignore
$ git ls-files --other --exclude-standard
$

.gitignore 不关心扩展名。它只是匹配模式。

Just add the filename to your .gitignore file. For example:

$ git ls-files --other --exclude-standard
test
$ echo test > .gitignore
$ git ls-files --other --exclude-standard
$

.gitignore doesn't care about extensions. It just matches patterns.

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