GNOME Bugzilla – Bug 749706
.gitignore files should not be under version control
Last modified: 2015-05-22 11:59:16 UTC
The .gitignore files are generated and should not be under version control.
Created attachment 303790 [details] [review] Fix .gitignores I feel like INSTALL should not need to have been listed under MAINTAINERCLEANFILES as I've made commits like this several times before without having any troubles from INSTALL, but it was not being ignored otherwise....
The following fix has been pushed: b6f0a1f Fix .gitignores
Created attachment 303814 [details] [review] Fix .gitignores Don't put .gitignore files under version control: they're generated by git.mk. Update git.mk and hook it up in Makefile.am. Update remaining Makefile.am to get to a clean git status. Don't clean/ignore files in $(srcdir) -- this makes no sense because only generated files should be ignored, and generated files should be generated in $(builddir).
Thanks, I've expanded your patch a bit and now it looks wonderfully clean!