I'm developing a small pet project on Google App Engine and I would like to keep the source code under source control using github; this will allow a friend of mine to checkout and modify the sources.
I just have a PetProject
directory with all the sources and the Google App Engine development server pointing to that directory.
Is it correct to create a repo directly from PetProject directory or is it preferable to create a second directory mirroring the develop PetProject
directory?
In the latter case, anytime my friend will release something new, I would need to pull fetch from Git copying the modified files to the develop PetProject
directory.
If I decide to keep the repo inside the develop directory, skipping .git
on Gae yaml is enough?
What are the best practices here?