So far, I have used version control for simple web projects that do not actually have a compilation stage. Now I have developed a relatively large project that follows the standard template "./configure; make; make install". I am not sure of the correct workflow for this type of project.
What should I do with all created files from the compilation process?
- Add a lot of things to .gitignore? This is difficult because I did not create the build process and do not understand everything that was created.
- Design a project in a different place for each assembly? This seems like a pain, given that I often build every few minutes.
- Just remember to add something that I don't know about, i.e. never do
git add . If so, how do I clean now and then?
Obviously, this is everyone who deals with compiled code persons, so Iโm sure that there is an accepted template, I am not familiar with it yet.
git version-control autotools
Tristan
source share