The way we do it is:
svn:ignore filename.ext
filename.local.ext
filename.stage.ext
filename.prod.ext
On local make a symlink to local version:
ln -s filename.local.ext filename.ext
On staging make a symlink to stage version:
ln -s filename.stage.ext filename.ext
On prod, make a symlink to prod
Hi Everyone,
I am just after some advice on how other people solve the following issue.
I have a committed file.
When it is deployed, it needs to be in a state (lets call it state 1)
While testing code locally, it needs to be in some other state (state 2)
Short of altering the code to read like;