vote up 1 vote down star

I need to do the following:

  1. Write pre-commit hook in Perl

  2. Hook should check all files being committed for presence of some text, and fail if that text is not found

Basically, I need an example of Perl hook that reads files being committed.

I am really looking for some elegant solution with the least amount of code.

Notes: Hook should use svnlook or other better way to find files.

flag

78% accept rate

2 Answers

vote up 0 vote down

It should not be too difficult to modify this example in Python to do what you want. See also the hooks subdirectory of your repository for some templates and hook scripts and contributed hook scripts.

link|flag
vote up 0 vote down

It sounds like you've got the foundation figured out already:

  • get list of all files being committed
  • search each one of them in turn for particular text
  • if text is found, reject commit

You'll find some information on writing pre-commit hooks in the manual.

link|flag

Your Answer

Get an OpenID
or

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