Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SVN post-update hook

I searched on the web for info about how to implement a post-update hook in my local machine but i didnt found anything! In particular I would like to fire that hook after I update my svn copy from PHPStorm 3.0. I wrote a phing build.xml that will handle a task that i want to be performed after the svn update automatically. Any Idea ? Ty in advance!

P.S: our local machines runs Win7.

like image 359
oloN3rd Avatar asked Apr 27 '12 11:04

oloN3rd


1 Answers

As @Rup has mentioned, you'll need a client that supports client-side hooks (such as Tortoise SVN). Another option - write a script (batch file) that first runs svn update and then does other things you'd like to do in your hook.

like image 192
malenkiy_scot Avatar answered Oct 23 '22 07:10

malenkiy_scot