What is the proper syntax to ignore a specific file such as a configuration file which may be different depending if it is running on Development, QA or Production?
A:
you can add property svn:ignore in your repository and ignore *.config files or exactly web.config
pukipuki
2010-09-30 18:44:06
That doesn't help, `svn:ignore` only works to hide files that svn would otherwise add
Sander Rijken
2010-09-30 18:52:11
+1
A:
Create and check in a template web.config.template
and ignore web.config
the 'deployed' version.
To automate the web.config.template
customization create a shell script.
zellus
2010-09-30 20:18:59