We have the ctemplate library included in our git-managed project which is based on GNU Autoconf.
I would like to put everything which is generated by Autoconf into the .gitignore file to avoid conflicts if someone accidentally commits his platform-specific generated files.
Can someone tell me how to figure out the complete list of files autoconf generates/modifies for all platforms (Mac, Ubuntu, CentOS, etc.)?
autoconf
and look at what files exist now - anything new was generated by autoconf - add those to.gitignore
... – Tombstone