Subversion Hook - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T17:22:42Z http://stackoverflow.com/feeds/question/313941 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/313941/subversion-hook 3 Subversion Hook Shyam 2008-11-24T11:37:22Z 2008-11-25T01:48:05Z <p>I am working in a project where there are configuration files, one in number for each of the environments where the application would be deployed.</p> <p>When a developer modifies one of these files, the developer should not be allowed to check-in the file individually, but check-in all the files together or at least the developer should be informed that this needs to be done.</p> <p>How can we achieve it?</p> http://stackoverflow.com/questions/313941/subversion-hook/313968#313968 5 Answer by Will Dean for Subversion Hook Will Dean 2008-11-24T11:48:38Z 2008-11-24T11:53:42Z <p>I would think you could write a pre-commit hook to do this - just have a list of files where if one is committed then they must all be committed.</p> <p>You can write hooks in any language that you can write a command-line application in. The only gotcha is that they run in the context of the SVN server, and (at least traditionally, I don't know if this is improved), they aren't given much environment when they start - you can be caught out be a lack of 'PATH' for example.</p> <p>Your repository will have example batchfile/shell-script hooks in the 'hooks' directory, but I've also written them in C# in the past.</p> <p>This <a href="http://wordaligned.org/articles/a-subversion-pre-commit-hook" rel="nofollow">http://wordaligned.org/articles/a-subversion-pre-commit-hook</a> looks like a good general introduction to pre-commit hooks.</p> http://stackoverflow.com/questions/313941/subversion-hook/314006#314006 0 Answer by Shyam for Subversion Hook Shyam 2008-11-24T12:15:27Z 2008-11-24T12:15:27Z <p>When you say that it needs to be run in the context of the SVN server, do you say that the working copy needs to necessarily be in the same physical server?</p> http://stackoverflow.com/questions/313941/subversion-hook/314037#314037 1 Answer by Danny for Subversion Hook Danny 2008-11-24T12:31:51Z 2008-11-24T12:31:51Z <p>No, To get information about the transaction your script can simply query svn about the details. And svn can provide that information, it need not be on the same server.</p> <p>What he means is that when subversion executes your hook it runs <em>w/o an environment</em> and by the <em>svn server itself</em>. Any external resources your svn hook might need have to be accessible by the svn server account. From what you are asking this may not be a problem, assuming you don't need some sort of external database access or the like for you to compare the transaction against.</p> <p>Your best bet is to look at some of the subversion hooks <a href="http://svn.collab.net/viewvc/svn/trunk/contrib/hook-scripts/" rel="nofollow">that come with svn</a> for examples. Also <a href="http://svnbook.red-bean.com/nightly/en/svn-book.html#svn.ref.reposhooks" rel="nofollow">SVN Hook Arguments</a> lists how each hook is called.</p>