Remember to Reply All so the conversation stays on the mailing list.

On Dec 13, 2011, at 01:38, Amitakhya Phukan wrote:

> On Tue, Dec 13, 2011 at 2:22 AM, Ryan Schmidt wrote:
>> If you're using something like bash to write your post-commit hook script, 
>> you'll be running "svnlook changed" to see what files were changed by the 
>> revision, and then for each one, you'll be doing your check. In between 
>> those steps (getting the list of files, and checking them), filter out the 
>> ones you don't want to check (those in Docs). For example using "grep -v 
>> /Docs/". Alternately, discard everything *except* the paths you want to 
>> check, e.g. Bar: "grep /Bar/".
> 
> So I have to write a post commit hook ? Can you please share an example with 
> me ? I am using bash shell.

Sorry, I meant pre-commit hook. They're quite similar anyway. There are many 
examples of hook scripts in the mailing list archives; you should be able to 
find some by searching:

http://svn.haxx.se/users/

Reply via email to