What kinds of hook scripts are people using for Subversion? Just general ideas but code would be great too!
|
I am using the Here I post a The only tricky part was to be able to actually parse the stdin from
the batch file... This is done here with the The other this is that I have had reports from other users of issues with the use of the
|
|||||||
|
|
If you have a mix of unix and Windows users working with the repository, I urge you to use the case-insensitive.py pre-commit hook-script as a precautionary measure. It prevents hard-to-sort-out situations where svn updates fail for Windows users because of a file rename which only changed the case of the file name. Believe me, there is a good chance it will save you trouble. |
||||
|
|
We use FogBugz for bug tracking, it provides subversion commit scripts that allow you to include a case number in your check in comments and then associates the bug with the check in that fixed it. It does require a WebSVN instance to be set up so that you have a web based viewer for your repository. |
||||
|
|
|
In my work place we've set up a post-commit hook that generates RSS feeds that are displayed in various dash boards and are used for code reviewers to know when it is time to review and for us to see that new employees are committing enough. |
|||
|
|
|
several things we use them for:
|
|||
|
|
|
For those who are looking for a pre-revprop-change.bat for a snvsync operation : https://gist.github.com/1679659
It just comes from here : http://chestofbooks.com/computers/revision-control/subversion-svn/Repository-Replication-Reposadmin-Maint-Replication.html and has been adapted for Windows. |
||||
|
|
|
I'm using post-commit hooks (I think it's this one) to post a message to a forum on Basecamp for each commit. Two advantages:
I guess the end result of this is similar to what @Aviv is doing. I'm looking into solutions for building the latest commit on a separate server for continuous integration, but I'm going to have to change the way we make changes to our database schema before that will work. |
||||
|
|
|
This was discussed on the subversion users mailing list a while ago. This post in particular has some useful ideas. |
|||
|
|
|
The most common one I think is to allow people to change revision comments after comitting. You need to enable the 'pre-revprop-change' hook script to allow that. The example provided, if enabled allows editing only the comment property and only be the original comitter. Great for correcting typos. |
|||
|
|
|
A hook to notify the bug/issue management system of changes to repository. Ie. the commit message has issue:546 or similar tag in it that is parsed and fed to the bug management system. |
|||
|
|
|
We check the following with our hook scripts:
We still want to implement the following:
|
|||
|
|
|
We use a commit hook script to trigger our release robot. Writing new release information to a file named changes.txt in our different products will trigger the creation of a tag and the relevant artifacts. |
|||
|
|
|
I have one setup using the Ruby Tinder library that I send to a campfire room, if anyone wants the script I can post or send the code to you. Other common ones I've seen are posts to bug tracking systems and email notifications. |
|||
|
|
|
Windows pre-commit hook to check that log contains something.
|
||||
|
|
|
post-commit hook to send email notification that something changed in the repository to a list of emails. You need sendmail.exe in the same folder than your hook file, along with sendmail.ini. You also need a file post-commit.tos.txt next to your post-commit.cmd to list the mail recipients. The file should contain:
Here is the hook code:
|
||||
|
|
|
I forgot to enter a comment while committing. Didn't have time to figure out why my pre-revprop-change hook wasn't working. So the following svnadmin command worked for me to enter a commit message:
|
||||
|
|