What are some common and/or useful pre-commit hooks for SVN?
|
5
|
|||||||||||||
|
|||||||||||||
|
|||||||||||||
|
|
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). |
|||
|
|
|
|
That it has a commit message, and it is != than "bug fixing". Damn, did I hate those useless messages! |
|||
|
|
|
|
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. |
|||
|
|
|
|
Solving lack of File Externals in SVN 1.5 using PostUpdate and PreCommit |
|||
|
|
|
|
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. |
|||
|
|
|
|
How about a hook to compile the project? e.g. Run make all. This ensures no one checks in code that doesn't compile! :) |
|||
|
|
|
|
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. |
|||
|
|
|
|
I use a post-commit hook to rewrite the author property to a friendly name from our ldap tree. (authentication is with employee id) |
|||
|
|
|
|
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: @echo off svnlook log -t "%2" "%1" | c:\tools\grep -c "[a-zA-z0-9]" > nul if %ERRORLEVEL% NEQ 1 goto DISALLOWED echo Please enter a check-in comment 1>&2 exit 1 :DISALLOWED svnlook changed -t %2 %1 > c:\temp\pre-commit.txt findstr /G:"%1\hooks\ignore-matches.txt" c:\temp\pre-commit.txt > c:\temp\precommit-bad.txt if %ERRORLEVEL% NEQ 0 exit /b 0 echo disallowed file extension >> c:\temp\precommit-bad.txt type c:\temp\precommit-bad.txt 1>&2 exit 1 |
|||
|
|
|
|
Insert a note into Mantis bugtracker with the changelist details based on the commit message having 'issue #' or the like via RegEx. |
||||||
|
|
|
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 like using
|
||
|
|
|
|
|
||
|
|
|
|
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... |
||
|
|
|
|
That a user has actually entered a comment on the commit message, and that it contains a particular issue number to track. |
||||||||||||||||||||
|
