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

时间:2011-09-30 20:54:26

标签: git gitignore

  

可能重复:
  gitignore without binary files

编辑:gitignore without binary files

的Dupe

当您使用test.hs编译Haskell文件(ghc --make test.hs)时,结果为test.hitest。我只想添加和提交源test.hs,同时将test.hitest保留在存储库之外,但与源文件位于同一目录中。 test是问题所在,如何指定.gitignore忽略没有扩展名的编译文件?

1 个答案:

答案 0 :(得分:6)

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

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

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