SVN hooks for Windows

后端 未结 9 932
温柔的废话
温柔的废话 2021-01-30 00:18

I did a little googling and found that there isn\'t really a resource of SVN hooks for Windows. So I figured I\'d start a wiki here to centralize it.

If you contribute,

9条回答
  •  盖世英雄少女心
    2021-01-30 01:00

    I like to use subHooker, which is coded in java. It provides pre and post commit hook functionality.

    Pre commit:

    • Enforces commit message requirement, or minimal length or both (or not)
    • Can enforce a RegEX expression requirements in the commit message, good for requiring a back-log or defect number (or not)

    Post Commit:

    • Send HTML or Plain text e-mail messages
      • Both plain and html messages use a template system
      • Can turn diff on or off
      • Can turn change set on or off
    • supports localization
    • supports standardized logging.

    You can find it on google code @ http://code.google.com/p/subhooker/

    It's free, and yes, I am the author, I've been running subversion for a few years now, I love it a lot which is why I am contributing this back to the community.

提交回复
热议问题