(no title)
speleding | 7 days ago
/test export-ignore
That means that when a "git export" happens from git to our production server it skips all test files. (In our case Capistrano does that, no additional configuration needed.) You never want test files on a production server and it saves disk space to boot. Normal usage is not affected, in development or testing you would always do a "git pull" or similar.
Arrowmaster|6 days ago
There is also export-subst that is also used by git archive to create an output similar to git describe directly in a file.
speleding|6 days ago