vote up 8 vote down star
5

What are some common and/or useful pre-commit hooks for SVN?

flag
1  
one that fails for a specific user on even numbered days of the month? – crashmstr May 19 at 19:32
"The question you are asking appears to be subjective and is likely to be closed." – mmyers May 19 at 19:33
Should this be a community wiki? it is subjective, and doesn't ask to solve a particular problem. – DDaviesBrackett May 19 at 19:35
I think it could be edited to actually be useful, but in its current incarnation should be closed. – Instantsoup May 19 at 19:36
Indeed it is subjective, but it can teach us on hooks people use, which is more useful (though less funny) than "what is your favorite comics strip" One request to the all people answering - can you please post the code of the hook? (if possible) – David Rabinowitz May 19 at 19:38
show 1 more comment

This question has an open bounty worth 100 reputation ending in 2 days.

15 Answers

vote up 1 vote down

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).

link|flag
vote up 1 vote down

That it has a commit message, and it is != than "bug fixing". Damn, did I hate those useless messages!

link|flag
vote up 2 vote down

In the company I currently work on, this is checked:

  • If binary files have the needs lock attribute set;
  • If the Java files have the standard copyright notice and if it includes the currently year;
  • If the code is properly formatted (we use Jalopy for code formatting), this may sound silly but it actually make text comparisons between different versions easier;
  • If the code has a commit message;
  • If the directory structure conforms to what is defined (all projects should be under a defined SVN folder, and each project should have a tags, branch and trunk folder);

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.

link|flag
vote up 0 vote down

Solving lack of File Externals in SVN 1.5 using PostUpdate and PreCommit

link|flag
vote up 2 vote down

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.

link|flag
vote up 1 vote down

How about a hook to compile the project? e.g. Run make all. This ensures no one checks in code that doesn't compile! :)

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

I use a post-commit hook to rewrite the author property to a friendly name from our ldap tree. (authentication is with employee id)

link|flag
vote up 3 vote down

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

link|flag
vote up 2 vote down

Insert a note into Mantis bugtracker with the changelist details based on the commit message having 'issue #' or the like via RegEx.

link|flag
3  
That's not pre-commit but post-commit. – Marcus Lindblom May 19 at 20:33
Actually you are right, but presumptuous much? – Adam May 19 at 20:39
vote up 10 vote down

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.

link|flag
Never thought about to solve this problem by pre-commit... – powtac May 19 at 20:16
After sufficiently many botched revisions I just implemented this mainly for myself (I've moved to DVCS:es now, which allows one to continue commiting until the offending strand works well enough for merge.) However, the guys were consistently glad when the hook stopped their mistakes from becoming public, so adding these things is a good idea. – Marcus Lindblom May 19 at 20:31
vote up 5 vote down

I like using svn hooks to:

  • enforce the stricter points of code style
  • check for obvious syntax errors
  • make sure special Trac keywords like "Fixes" or "Addresses" are actually preceding the appropriate issue number
link|flag
vote up 6 vote down
  • Check for tabs and reject the check-in.
  • Check for inconsistent line endings and reject the check-in.
  • Check for occurance of "CR: [username]" and reject the check-in if there is no code review.
link|flag
vote up 6 vote down

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...

link|flag
vote up 17 vote down

That a user has actually entered a comment on the commit message, and that it contains a particular issue number to track.

link|flag
1  
Why would this get a down vote? – Instantsoup May 19 at 19:37
2  
Probably by someone who doesn't like leaving comments! ;) – John Feminella May 19 at 19:53
1  
Yeah great, non constructive feedback ! – Jon May 19 at 19:59
2  
It might be that forcing issue numbers aren't the favourite. I can see the good thing, but if I spot a small bug it's easier to just fix it rightaway than logging into the bug system and record a new issue for it. It depends on your process and tools, but I can understand those who don't like that enforcement. – Marcus Lindblom May 19 at 20:33
1  
It sure is easier to fix right away. Unfortunately there's no audit. We enforce issue numbers so our QA department can verify bug fixes make it into both the production branch and trunk to avoid regressions. – Instantsoup May 19 at 21:09
show 4 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.