I agree that the .git folders are unsightly. What you want to do is analogous to an svn export. So, googling for 'git export' turned this up: stackoverflow.com/questions/160608/how-to-do-a-git-export-like-svn-export
Which says you want to do this, or something similar: git archive master | tar - x - C /somewhere/else So your deployment script would delete the project deployment folder and recreate it with a command like the above. Regards, Nate On Mar 4, 2010 5:13 PM, "Alex Horn" <[email protected]> wrote: >> If there is a way to get rid of all those directories I always prefer doing it over having .git i... Alternatively, you might consider reconfiguring the GIT_DIR environment variable to your needs. On 4 March 2010 21:46, Huan Truong <[email protected]> wrote: > Hi FSCKers, > > I have a working p...
