Using SVN post-commit hook to update only files that have been commited - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T23:04:25Zhttp://stackoverflow.com/feeds/question/446518http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/446518/using-svn-post-commit-hook-to-update-only-files-that-have-been-commited2Using SVN post-commit hook to update only files that have been commitedfondie2009-01-15T12:15:26Z2009-09-25T11:56:31Z
<p>I am using an SVN repository for my web development work. I have a development site set up which holds a checkout of the repository.</p>
<p>I have set up an SVN post-commit hook so that whenever a commit is made to the repository the development site is updated: </p>
<pre><code>cd /home/www/dev_ssl
/usr/bin/svn up
</code></pre>
<p>This works fine but due to the size of the repository the updates take a long time (approx. 3 minutes) which is rather frustrating when making regular commits. What I'd like is to change the post-commit hook to only update those files/directories that have been committed but I don't know how to go about doing this. Updating the "lowest common directory" would probably be the best solution, e.g.</p>
<p>If committing the follow files:</p>
<ul>
<li>/branches/feature_x/images/logo.jpg</li>
<li>/branches/feature_x/css/screen.css</li>
</ul>
<p>It would update the directory: /branches/feature_x/</p>
<p>Can anyone help me create a solution that achieves this please?</p>
<p>Thanks!</p>
<p><strong>Update</strong>: </p>
<ul>
<li>The repository and development site are located on the same server so network issues shouldn't be involved.</li>
<li>CPU usage is very low, and I/O should be ok (it's running on hi-spec dedicated server)</li>
<li>The development site is approx. 7.5GB in size and contains approx. 600,000 items, this is mainly due to having multiple branches/tags</li>
</ul>
http://stackoverflow.com/questions/446518/using-svn-post-commit-hook-to-update-only-files-that-have-been-commited/446572#4465724Answer by Jonathan Lonowski for Using SVN post-commit hook to update only files that have been commitedJonathan Lonowski2009-01-15T12:36:40Z2009-01-15T12:45:16Z<p>You might use <strong><code>svnlook dirs-changed</code></strong> and <strong><code>svn up -N</code></strong> to update only the contents of each folder changed:</p>
<pre><code>cd /home/www/dev_ssl
svnlook dirs-changed [REPOS] -r [REV] | xargs /usr/bin/svn up -N
</code></pre>
<p>Or, if per-file might be better for you (using <code>sed</code> to strip action characters):</p>
<pre><code>svnlook changed [REPOS] -r [REV] | sed "s/^....//" | xargs /usr/bin/svn up
</code></pre>
http://stackoverflow.com/questions/446518/using-svn-post-commit-hook-to-update-only-files-that-have-been-commited/446605#446605-1Answer by OrbMan for Using SVN post-commit hook to update only files that have been commitedOrbMan2009-01-15T12:49:15Z2009-01-15T12:49:15Z<p>I have done the exact some thing as you with post-commit hooks before, and it worked perfectly.</p>
<p>I am guessing that you are coming at the problem from the wrong direction. An svn update is normally a very quick operation. The problem is more likely to be a slow network connection to the repo, or a taxed computer either cpu or i/o. Any operation you do to try to find out what changed and update is either prone to failure as you are circumventing svn process, or going to take as long or longer than a simple svn update would. I recommend you try to address the root cause of the problem.</p>
<p>If your code base is really that large that it justifiably takes a long time to update, you might consider breaking the repo up into several smaller repos, and then tying them all back together using external references under one master repo.</p>
http://stackoverflow.com/questions/446518/using-svn-post-commit-hook-to-update-only-files-that-have-been-commited/529235#5292350Answer by gbjbaanb for Using SVN post-commit hook to update only files that have been commitedgbjbaanb2009-02-09T18:17:15Z2009-02-09T18:17:15Z<p>For Windows:</p>
<pre><code>for /F "eol=¬ delims=¬" %%A in ('svnlook dirs-changed %1 -r %2') do svn export "file:///c:/path/to/repo/%%A" "c:/svn_exports/%%A" --force
</code></pre>
<p>Just copy the above into your post-commit hook batch file (or window for VisualSVN) and you're done - you'll get the updated directory exported to c:\</p>
<p>You could try using %1 instead of c:/path/to/repo above, but I found that it didn't work because VisualSVN give the %1 path with back-slash path separators, and svnlook gives them with forward-slashes. This doesn't seem to work right so I hard-code the repo path (I got "The filename, directory name, or volume label syntax is incorrect" errors)</p>
http://stackoverflow.com/questions/446518/using-svn-post-commit-hook-to-update-only-files-that-have-been-commited/1064105#10641050Answer by sparks for Using SVN post-commit hook to update only files that have been commitedsparks2009-06-30T14:51:05Z2009-06-30T14:51:05Z<p>SVN Export is a viable alternative to an update and may go faster</p>
http://stackoverflow.com/questions/446518/using-svn-post-commit-hook-to-update-only-files-that-have-been-commited/1466701#14667010Answer by Nikola Majksner for Using SVN post-commit hook to update only files that have been commitedNikola Majksner2009-09-23T15:22:52Z2009-09-23T16:54:37Z<p>Hi,</p>
<p>I'm out of luck with bash script you gave us. Simply it doesn't work for me, if i put</p>
<p>"#!/bin/bash
/usr/bin/svn up /home/www/somefolder"</p>
<p>it works perfect, but due to big size of svn repository it take a long time. Any help would be great.</p>
<p>Thanks,
Nikola</p>
http://stackoverflow.com/questions/446518/using-svn-post-commit-hook-to-update-only-files-that-have-been-commited/1476882#14768820Answer by Luc for Using SVN post-commit hook to update only files that have been commitedLuc2009-09-25T11:56:31Z2009-09-25T11:56:31Z<p>Have a look to this home made script : <a href="http://envrac.blogdns.net/shellscripts/export-automatique-d-un-projet-subversio" rel="nofollow">http://envrac.blogdns.net/shellscripts/export-automatique-d-un-projet-subversio</a> !</p>