I have some configuration files to commit on GIT with default parameters. Users can pull these files and can modify them on their local copy but they must not commit/push.
How can I achieve a similar result? the file gitignore doesn't fit my need because file must be commit only the first time
.config.templateor.config.defaultspattern outlined here: stackoverflow.com/questions/1396617 . It's the most common approach to managing configuration files in source control. It's not a git specific approach.