What strategy do you use to avoid storing passwords in version control?
Currently, I have development/test/production passwords saved in three different files and th
Put the passwords in o/s user environment variables.
Only that user or root can read the value, same as a file, but with zero chance of it getting checked into source control.