Is there some way to commit a file "partially" in TortoiseSVN? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T10:40:37Z http://stackoverflow.com/feeds/question/314132 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/314132/is-there-some-way-to-commit-a-file-partially-in-tortoisesvn 5 Is there some way to commit a file "partially" in TortoiseSVN? Fabio Gomes 2008-11-24T13:30:22Z 2008-12-19T16:33:58Z <p>I'd like to commit just a part of a file using TortoiseSVN, is there some way to do that?</p> <p>I'll give an example to make it clearer why I want to do that.</p> <p>I have a file with some defines that are replaced in the build process, something like this:</p> <pre><code>#define SOME_PATH "[SOME_PATH]" </code></pre> <p>This [SOME_PATH] tag is replaced in the build process but when I'm coding I have to change it so the actual path in my machine.</p> <p>So each time I commit I need to backup some lines, revert them, commit and then restore the backup, and this is kinda annoying.</p> <p>Is there some way to tell TortoiseSVN to "ignore" some changes in, say, Lines X,Y and Z?</p> http://stackoverflow.com/questions/314132/is-there-some-way-to-commit-a-file-partially-in-tortoisesvn/314135#314135 8 Answer by Corey Trager for Is there some way to commit a file "partially" in TortoiseSVN? Corey Trager 2008-11-24T13:32:20Z 2008-11-24T13:32:20Z <p>No. Subversion works at the file level.</p> http://stackoverflow.com/questions/314132/is-there-some-way-to-commit-a-file-partially-in-tortoisesvn/314137#314137 4 Answer by Nic Wise for Is there some way to commit a file "partially" in TortoiseSVN? Nic Wise 2008-11-24T13:33:16Z 2008-11-24T13:33:16Z <p>Short version: NO. Subversion is an all-or-nothing system (as are all source control systems I know of)</p> <p>Longer version: No, however if you use something like NANT to do you build, you could use xmlpoke or similar to rewrite parts of the file on build. Works for us :) We rewrite about 6 web.config files and various other app configuration files on build (well, on building a deployment package)....</p> http://stackoverflow.com/questions/314132/is-there-some-way-to-commit-a-file-partially-in-tortoisesvn/314141#314141 7 Answer by Will Hartung for Is there some way to commit a file "partially" in TortoiseSVN? Will Hartung 2008-11-24T13:33:39Z 2008-11-24T13:33:39Z <p>No.</p> <p>The best way to do that is to check in some file like "build_paths.h.default", then on each build platform, copy it to build_paths.h, modify it to suit, then tell SVN to IGNORE build_paths.h. And finally #include "buiild_paths.h" within your program.</p> http://stackoverflow.com/questions/314132/is-there-some-way-to-commit-a-file-partially-in-tortoisesvn/314156#314156 2 Answer by VonC for Is there some way to commit a file "partially" in TortoiseSVN? VonC 2008-11-24T13:43:37Z 2008-11-24T14:03:39Z <p>You could also define :</p> <ul> <li>a pre-commit hook which will take care of the rollback for you, </li> <li>and a post-commit hook to restore your file.</li> </ul> <p>Ouch... actually this is not a good idea, according to the <a href="http://svnbook.red-bean.com/en/1.5/svn-book.html#svn.reposadmin.create.hooks" rel="nofollow">SVN Manual</a>.</p> <ul> <li>All triggers are executed on the server side (not the client side, as it is the case for ClearCase)</li> <li>Subversion keeps client-side caches of certain bits of repository data, and if you change a commit transaction in this way, those caches become undetectably stale. This inconsistency can lead to surprising and unexpected behavior. Instead of modifying the transaction, you should simply validate the transaction in the pre-commit hook and reject the commit if it does not meet the desired requirements</li> </ul> <p>A <a href="http://www.nabble.com/Automatic-replacement-on-commit-ts19374972.html" rel="nofollow">possible way</a> would be to modify your file in a post-commit script, and then commit that file as an independent change, before restoring it in anotehr post-commit script...</p> http://stackoverflow.com/questions/314132/is-there-some-way-to-commit-a-file-partially-in-tortoisesvn/314182#314182 0 Answer by Justice for Is there some way to commit a file "partially" in TortoiseSVN? Justice 2008-11-24T13:57:49Z 2008-11-24T13:57:49Z <p>What you are looking for is a feature of various distributed version-control systems such as <a href="http://darcs.net/" rel="nofollow">darcs</a>. In </p> http://stackoverflow.com/questions/314132/is-there-some-way-to-commit-a-file-partially-in-tortoisesvn/336488#336488 3 Answer by belugabob for Is there some way to commit a file "partially" in TortoiseSVN? belugabob 2008-12-03T08:19:23Z 2008-12-19T16:33:58Z <p>The solution to your problem is not to get subversion to do this for you, but to configure your application so that environment specific details (Such as the [SOME_PATH] value) are stored 'externally' to the code that is checked in.</p> <p>Whether you do this via a separate file that is marked to be ignored by SVN, or whether you store this information in an environment variable, depends on your development language/OS and a few other factors.</p> <p>Whichever solution you use, it may be wise to arrange some kind of default, to allow for the case where no value is specified.</p> <p>It may also be worth considering whether the details should be applied at build time or run time - if you can arrange the latter, it makes deployment of new versions of the application much easier.</p> <p>A typical example is found in web applications, where a database connection is required, but the actual database instance to be used is different between development and production environments. In such cases, the database configuration is defined on the web server (Not in the application, which simply asks the web server for a database connection with a given name) with development and production servers having different configurations. It is then possible to deploy the <strong>same</strong> web application to both servers and have each app instance access the appropriate database.</p>