Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SVN client side hook

Does SVN have client-side hook support like in TortoiseSVN? I need a hook so that when I send a commit the browser opens a specific url.

like image 654
tfmoraes Avatar asked May 26 '10 19:05

tfmoraes


People also ask

What is svn hooks?

A hook is a specifically named program that is called by the Subversion server during the execution of some operations. There are exactly nine hooks which must reside under the hooks directory in the repository. When you create a new repository, you get nine template files in this directory, all of them having the .

What is post commit hook in SVN?

The post-commit hook is run after the transaction is committed and a new revision is created. Most people use this hook to send out descriptive emails about the commit or to notify some other tool (such as an issue tracker) that a commit has happened. Some configurations also use this hook to trigger backup processes.

What is pre commit hook in SVN?

The pre-commit hook gives you an opportunity to catch the transaction just before it becomes a revision. Subversion passes this hook two parameters: the path to the root of the repository. the transaction identifier.


1 Answers

No. Client-side hooks are a TortoiseSVN-specific feature.

like image 166
jeroenh Avatar answered Nov 01 '22 18:11

jeroenh