我们的git-managed项目中包含了ctemplate库,该项目基于GNU Autoconf.
我想将Autoconf生成的所有内容放入.gitignore文件中,以避免在有人意外提交其特定于平台的生成文件时发生冲突.
有人能告诉我如何找出autoconf为所有平台(Mac,Ubuntu,CentOS等)生成/修改的完整文件列表吗?
以下是我的各种内容.gitignore
(在Debian测试中):
共享库:(libtool)
/Makefile /Makefile.in /aclocal.m4 /autom4te.cache/ /config.* /configure /depcomp /install-sh /libtool /ltmain.sh /m4/ /missing /stamp-h? .deps/ .dirstamp .libs/ *.l[ao] *~
可执行文件:
/Makefile /Makefile.in /aclocal.m4 /autom4te.cache/ /config.* /configure /m4/ /stamp-h? .deps/ .dirstamp *.o *~
您可能希望稍微调整一下,但这是其中的大部分内容.make dist-clean
然后提交,重建,最后git status
可能会显示新文件,具体取决于您的构建产生的确切内容.