Best practice for Google app engine and Git.
- by systempuntoout
I'm developing a small pet project on Google App Engine and i would like to keep code under source control using github; this will allow a friend of mine to checkout and modify the sources.
I just have a directory with all sources (call it PetProject) and Google App Engine development server points to that directory.
Is it correct to create a Repo directly from PetProject directory or is it preferable to create a second directory (mirror of the develop PetProject directory); in this case, anytime my friend will release something new, i need to pull from Git and then copy the modified files to the develop PetProject directory.
If i decide to keep the Repo inside the develop directory, skippin .git on yaml is enough?
What's the best practice here?