SVN hooks for Windows

后端 未结 9 951
温柔的废话
温柔的废话 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 00:45

    Prevent edits to revision props other than svn::log

    1. pre-revprop-change.bat
    2. Prevents edits to revision properties other than svn::log (alternate version)

    Source:

    rem Only allow log messages to be changed.
    if "%4" == "svn:log" exit 0
    echo Property '%4' cannot be changed >&2
    exit 1
    

提交回复
热议问题