CodeIgniter and GIT: What not to check-in?
CodeIgniter and GIT: What not to check-in? This is my first attempt with CodeIgniter and I'm trying to figure out how to configure it against a GIT repo. The basic idea here is to avoid checking-in framework files and somehow keep only my work in GIT. What is the default/best practice here. Do people commit entire codeigniter folder into source control? Looking at the default .gitignore file, it doesn't look like they want to exclude framework folders like system and user_guide etc. .gitignore system user_guide My idea is to keep XAMPP and CodeIgnitor in default location ( c:xampp ) and keep my code in source code in, say D:My ProjectsNewExcitingWebsite (with models , views and controllers folders therein) and then redirect codeigniter to look towards that folder by setting variables in config files. Is that the correct way to go? If yes, how do I set path for Controllers ? There is a variable for views folder that can be set, but none for controllers and models. c:xampp...