What are some common and/or useful pre-commit hooks for SVN?
|
|
We have a post commit hook that posts the message to a twitter account. Uses twitsvn (disclaimer: I'm a committer on that project). Silly? Maybe...but it turned out to be a good way for us to communicate the goings-on of our repository to some of our version-control-challenged team members. Once SVN started talking to them via their twitter client, it didn't feel so much like a black box. |
||||
|
|
|
That a user has actually entered a comment on the commit message, and that it contains a particular issue number to track. |
|||||||||||||||||||||
|
|
Checking for absolute paths in various text files (i.e. VRML, XML etc). Most of the checked-in code should never have absolute paths, yet some people and tools insist on producing hard-coded stuff. |
|||||
|
|
I do a word count on submit messages. They need to be 5 words or more. This has led to some comedic insults against me... |
|||||
|
|
|||||||||
|
|
I like using
|
|||
|
|
|
You might want to take a look at: http://svn.apache.org/repos/asf/subversion/branches/1.6.x/www/tools_contrib.html#hook_scripts (This page might be outdated obviously it is not maintained anymore for Subversion 1.7) Or directly at: https://svn.apache.org/repos/asf/subversion/trunk/contrib/ |
|||||
|
|
I use a post-commit hook to rewrite the author property to a friendly name from our ldap tree. (authentication is with employee id) |
||||
|
|
|
A great commit hook we have at on our archive is to check all .VCPROJ (or .CSPROJ) visual studio projects to make sure the output directories weren't changed to anything local (commonly used for debugging). These problems will compile properly but still break the build because of missing executables. |
||||
|
|
|
In the company I currently work on, this is checked:
I guess that's it. I like the idea of checking if the commit is associated with a ticket; it actually makes a lot of sense to me. |
||||
|
|
|
I check the filetype and make sure that certain banned types are not committed by accident (eg .obj, .pdb). Well, not since the first time someone checked in 2 gig of compiler-generated temporary files :( for windows:
|
|||||||||
|
|
Some prefer running a lint-like tool for a given language to find common problems in the code and/or enforce coding style. However in a small and skilled team I prefer to allow every commit to go through and deal with possible problems during continuous integration and/or code review. Thanks to this commits are faster which encourages more frequent commits, leading to easier integration. |
||||
|
|
I use the check-mime-type.pl pre-commit hook to check that MIME Type and End of line options are set on committed files. I use subversion to publish files to be visible on a website using DAV, and all files without the MIME Type set get served as text files (e.g. HTML source gets displayed in a browser instead of the rendered markup). |
||||
|
|
|
Insert a note into Mantis bugtracker with the changelist details based on the commit message having 'issue #' or the like via RegEx. |
||||
|
That it has a commit message, and it is != than "bug fixing". Damn, did I hate those useless messages! |
||||
|
|
|
I use the following hook script to make sure line endings of source code and permissions of shell scripts are correct (it is frustrating when someone checks in on windows when everything seems ok and breaks the unix build).
|
||||
|
|
|
How about a hook to compile the project? e.g. Run make all. This ensures no one checks in code that doesn't compile! :) |
|||||||||||||
|
|
We use a pre-commit and post-commit hook combo to automatically update bugzilla with the associated entry from the svn commit. We use a second (pre-commit) hook to ensure that the appropriate svn:eol-style and svn:keywords properties are set on a file before it is added to the repostitory. We have a third (post-commit) hook to kick off a build and mail the results if the build is broken, and to inform everyone when the build has been fixed again. We have a fourth (post-commit) hook to kick off svn replication, to ensure that the offsite replication is as up to date as possible. Unfortunately, I cannot post the source to these, but, except for the Bugzilla integration, they are easy enough to implement, and Hudson is probably a better choice for continuous integration. For bugzilla integration, I would suggest looking at scmbug. |
||||
|
|
|
I'd enjoy a hook that checks for [Reviewer: xyz] note in the commit message, and rejects the commit. |
||||
|
|
|
I'm thinking about writing one to check doctype's on aspx / html files, just to make sure everyone is using the correct one. Also, you can have a pre (or post) commit hook push a notification out to your CI server as described on the Hudson Blog |
||||
|
|
|
I check for case collision (stupid windows) and also require-mergeinfo.pl to ensure that the client is at least 1.5 - that way svn:mergeinfo will always be set |
||||
|
|