SVN config-file Question revisited - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T23:12:58Z http://stackoverflow.com/feeds/question/299734 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/299734/svn-config-file-question-revisited 1 SVN config-file Question revisited Bill K 2008-11-18T18:47:59Z 2008-11-18T22:14:01Z <p>I searched and found <a href="http://stackoverflow.com/questions/233441/svn-how-do-i-maintain-my-local-configblah-file">this question</a> but did not like the answer.</p> <p>Is there another way to get SVN to ignore config files that are checked in in-place (that you cannot check-in changed), but must be modified on your system.</p> <p>This is a pretty severe failure of SVN, my first disappointment with the system actually. What I'm hoping for is that someone out there figured out a trick, perhaps with branching just the config files onto a new branch while leaving everything else pointing at the original branch. Perhaps modifying the .svn directory?</p> <p>There must be a better solution then template/copy, that seems so unmaintainable.</p> http://stackoverflow.com/questions/299734/svn-config-file-question-revisited/300277#300277 1 Answer by Bill K for SVN config-file Question revisited Bill K 2008-11-18T21:55:26Z 2008-11-18T21:55:26Z <p>After messing around for a few hours I think I have an answer. Since it's my own question, I guess I'll make it community wiki...</p> <p>I created a branch of the entire repository and pointed the "Config" type files at the new branch, then checked them in.</p> <p>I'm not sure how this will play out, but it made the "Check everything in" stuff work correctly. I think if I change one of those files it'll work fine, checking it into my local repository.</p> <p>The only thing that could be annoying is if someone else changes a file that I have branched, I'm not sure how I'll identify the fact that I'm supposed to merge.</p> http://stackoverflow.com/questions/299734/svn-config-file-question-revisited/300335#300335 0 Answer by Nic Wise for SVN config-file Question revisited Nic Wise 2008-11-18T22:14:01Z 2008-11-18T22:14:01Z <p>We get around this by:</p> <p>All dev machines are consistent. We all develop out of c:\projects\TopGear\trunk... We all alias our SQL server to PROJECTNAME (eg TOPGEAR). We all use the same IIS hostname (TopGearDev)</p> <p>And our NANT deployment building script rewrites all the config's, as needed, when we do a deployment, so we never need to worry about the settings - all the relevant ones are rewritten.</p> <p>Added bonus: build servers (we use TeamCity) are <em>trivial</em> to setup.</p> <p>It's bitten us once or twice, minorly, but has otherwise been good.</p> <p>Not SVN specific (tho we are using SVN), tho.</p>