How to version control config files pragmatically?
- by erenon
Suppose we have a config file with sensitive passwords. I'd like to version control the whole project, including the config file as well, but I don't want to share my passwords.
That could be good, if this config file:
password=secret
foo=bar
becomes
password=*
foo=bar
and the other users of the vcs could also set up the password on they own.…