There are several scripts floating around the Net regarding publishing an email to the development list every time someone commits a revision to Subversion.
In other cases, you may want to post the commit log entry directly to your project tracking system, such as trac, Rally, Gemini, Mingle, etc. Anything under the sun can be coded into a post-commit action with Subversion.
Here’s how it works. Here is how to send post commit email from Subversion while running on Windows:
In your subversion repository, there is a hooks folder. This contains some template files for you. On a Windows system, you’ll want a file called post-commit.bat. This batch command will be run immediately after Subversion commits a transactional revision to the repository. You can do work on other events, but I’ll focus on post-commit for this post.
Here is my post-commit.bat file that will call NAnt (which is placed inside the hooks folder for simplicity):
pushd . cd DRIVELETTER:svnrepositoriesrepositorynamehooks nantnant.exe -buildfile:postcommitemail.build -D:path.repository=%1 -D:revision=%2 > lastpostcommitrun.txt popd
Notice how we are merely calling nant.exe. The rest of the interesting work is done by NAnt. Now that we are within NAnt, we can script out any action we might need. In this case, I’m going to use some SVN command line tools to build up a simple email that with send developers what was included in the last commit:
<?xml version="1.0" encoding="utf-8"?> <project name="commit" default="build" xmlns="http://nant.sf.net/release/0.85/nant.xsd"> <target name="build"> <exec program="svnlook" commandline="author ${path.repository} -r ${revision}" output="author.txt"/> <exec program="svnlook" commandline="info ${path.repository} -r ${revision}" output="message.txt"/> <echo message=" " file="message.txt" append="true"/> <exec program="svnlook" commandline="changed ${path.repository} -r ${revision}" output="message.txt" append="true" /> <exec program="svnlook" commandline="diff ${path.repository} -r ${revision} --no-diff-deleted --no-diff-added" output="message.txt" append="true"/> <loadfile file="author.txt" property="author"/> <loadfile file="message.txt" property="message"/> <mail tolist=jeffrey@mydomain.com from=build@mydomain.com subject="SVN ${path.repository} - ${author}" message="${message}" mailhost="smtp.mydomain.com"/> </target> </project>
.csharpcode, .csharpcode pre
{
font-size: small;
color: black;
font-family: consolas, “Courier New”, courier, monospace;
background-color: #ffffff;
/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt
{
background-color: #f4f4f4;
width: 100%;
margin: 0em;
}
.csharpcode .lnum { color: #606060; }
That’s all it takes. I can write anything I need to in order to perform custom actions when things happen with my Subversion repository. In this case, I’m sending email to a list, and the email contains the last commit.