I'am authoring a PHP CMS, that needs an installation to work.
The installation generate a config file.
At localhost i work on an installed version (with a specific config file),
But the users who download the CMS from github would have an empty config file (= uninstalled version).
What I want :
-a specific config file (config.php
) at localhost (to work on)
-an empty config file (config.php
) on github (to be downloaded)
I've run across this post : Can git automatically switch between spaces and tabs?
Not sure if it's really what I'm looking for.
voila.