In a project there are some files that need editing to run the local server, such as .htaccess
, config.php
, among others.
In branch master
, we keep these files with the data in production. There are some developers who have different settings for running a server locally, so each one works with different data in some files.
In this case, I would like to have some files set up for my local machine with no need to commit
of them and not "clutter" the code of branch master
in a possible merge
.
.gitignore
deletes these files in the repository. Is there any other solution? How is your method of working to solve this problem?