<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: A few svn pre-commit hooks</title>
	<atom:link href="http://blog.grimsy.net/2008/07/03/a-few-svn-pre-commit-hooks/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.grimsy.net/2008/07/03/a-few-svn-pre-commit-hooks/</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 10 Aug 2010 06:31:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: kurgbe</title>
		<link>http://blog.grimsy.net/2008/07/03/a-few-svn-pre-commit-hooks/comment-page-1/#comment-30</link>
		<dc:creator>kurgbe</dc:creator>
		<pubDate>Thu, 30 Oct 2008 15:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://grimsy.net/?p=22#comment-30</guid>
		<description>Thanks for these examples. Very useful.&lt;br/&gt;&lt;br/&gt;On my repository, I also reject Tortoise default log messages such as &quot;Moved remotely&quot;.&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;LOGMSG=$($SVNLOOK log -t &quot;$TXN&quot; &quot;$REPOS&quot;)&lt;br/&gt;&lt;br/&gt;if [ ${#LOGMSG} -lt 10 ]; then&lt;br/&gt;echo -e &quot;&gt;&gt;&gt; Big brother is watching you ...&lt;br/&gt;Your commit has been rejected.&lt;br/&gt;Commit again and provide a meaningful log comment: at least 10 characters!&quot; 1&gt;&amp;2&lt;br/&gt;exit 1&lt;br/&gt;fi&lt;br/&gt;&lt;br/&gt;if [ &quot;$LOGMSG&quot; == &quot;Moved remotely&quot; -o &quot;$LOGMSG&quot; == &quot;Copied remotely&quot; -o &quot;$LOGMSG&quot; == &quot;Renamed remotely&quot; -o &quot;$LOGMSG&quot; == &quot;Removed file/folder&quot; ]; then&lt;br/&gt;echo -e &quot;&gt;&gt;&gt; Big sister is watching you ...&lt;br/&gt;Your commit has been rejected.&lt;br/&gt;Commit again and provide a meaningful log comment: default messages like &#039;$LOGMSG&#039; are not accepted.&quot; 1&gt;&amp;2&lt;br/&gt;exit 1&lt;br/&gt;fi</description>
		<content:encoded><![CDATA[<p>Thanks for these examples. Very useful.</p>
<p>On my repository, I also reject Tortoise default log messages such as &quot;Moved remotely&quot;.</p>
<p>LOGMSG=$($SVNLOOK log -t &quot;$TXN&quot; &quot;$REPOS&quot;)</p>
<p>if [ ${#LOGMSG} -lt 10 ]; then<br />echo -e &quot;&gt;&gt;&gt; Big brother is watching you &#8230;<br />Your commit has been rejected.<br />Commit again and provide a meaningful log comment: at least 10 characters!&quot; 1&gt;&amp;2<br />exit 1<br />fi</p>
<p>if [ &quot;$LOGMSG&quot; == &quot;Moved remotely&quot; -o &quot;$LOGMSG&quot; == &quot;Copied remotely&quot; -o &quot;$LOGMSG&quot; == &quot;Renamed remotely&quot; -o &quot;$LOGMSG&quot; == &quot;Removed file/folder&quot; ]; then<br />echo -e &quot;&gt;&gt;&gt; Big sister is watching you &#8230;<br />Your commit has been rejected.<br />Commit again and provide a meaningful log comment: default messages like &#39;$LOGMSG&#39; are not accepted.&quot; 1&gt;&amp;2<br />exit 1<br />fi</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kurgbe</title>
		<link>http://blog.grimsy.net/2008/07/03/a-few-svn-pre-commit-hooks/comment-page-1/#comment-29</link>
		<dc:creator>kurgbe</dc:creator>
		<pubDate>Thu, 30 Oct 2008 15:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://grimsy.net/?p=22#comment-29</guid>
		<description>Thanks for these suggestions.&lt;br/&gt;&lt;br/&gt;I added a check to reject the Tortoise default log messages &lt;br/&gt;&lt;br/&gt;LOGMSG=$($SVNLOOK log -t &quot;$TXN&quot; &quot;$REPOS&quot;)&lt;br/&gt;&lt;br/&gt;if [ ${#LOGMSG} -lt 10 ]; then&lt;br/&gt;echo -e &quot;&gt;&gt;&gt; &lt;br/&gt;Your commit has been rejected.&lt;br/&gt;Commit again and provide a meaningful log comment: at least 10 characters!&quot; 1&gt;&amp;2&lt;br/&gt;exit 1&lt;br/&gt;fi&lt;br/&gt;&lt;br/&gt;if [ &quot;$LOGMSG&quot; == &quot;Moved remotely&quot; -o &quot;$LOGMSG&quot; == &quot;Copied remotely&quot; -o &quot;$LOGMSG&quot; == &quot;Renamed remotely&quot; -o &quot;$LOGMSG&quot; == &quot;Removed file/folder&quot; ]; then&lt;br/&gt;echo -e &quot;&gt;&gt;&gt; Big sister is watching you ...&lt;br/&gt;Your commit has been rejected.&lt;br/&gt;Commit again and provide a meaningful log comment: default messages like &#039;$LOGMSG&#039; are not accepted.&quot; 1&gt;&amp;2&lt;br/&gt;exit 1&lt;br/&gt;fi</description>
		<content:encoded><![CDATA[<p>Thanks for these suggestions.</p>
<p>I added a check to reject the Tortoise default log messages </p>
<p>LOGMSG=$($SVNLOOK log -t &quot;$TXN&quot; &quot;$REPOS&quot;)</p>
<p>if [ ${#LOGMSG} -lt 10 ]; then<br />echo -e &quot;&gt;&gt;&gt; <br />Your commit has been rejected.<br />Commit again and provide a meaningful log comment: at least 10 characters!&quot; 1&gt;&amp;2<br />exit 1<br />fi</p>
<p>if [ &quot;$LOGMSG&quot; == &quot;Moved remotely&quot; -o &quot;$LOGMSG&quot; == &quot;Copied remotely&quot; -o &quot;$LOGMSG&quot; == &quot;Renamed remotely&quot; -o &quot;$LOGMSG&quot; == &quot;Removed file/folder&quot; ]; then<br />echo -e &quot;&gt;&gt;&gt; Big sister is watching you &#8230;<br />Your commit has been rejected.<br />Commit again and provide a meaningful log comment: default messages like &#39;$LOGMSG&#39; are not accepted.&quot; 1&gt;&amp;2<br />exit 1<br />fi</p>
]]></content:encoded>
	</item>
</channel>
</rss>
