3

VisualSVNサーバーでこのフックを使用して、pre-commit.batとしてRepository/hooksフォルダーに追加します。

私の質問は、コメントは常に数値で始まる必要があるというルールを追加するにはどうすればよいですか?コメントの最初の部分は、常にバグトラッカーからの問題番号にしたいと思います。例えば。「123-このコミットは問題123を修正します」

@echo off
::    
:: Stops commits that have empty log messages.
::

@echo off

setlocal

rem Subversion sends through the path to the repository and transaction id
set REPOS=%1
set TXN=%2

rem check for an empty log message
svnlook log %REPOS% -t %TXN% | findstr . > nul
if %errorlevel% gtr 0 (goto err) else exit 0

:err
echo. 1>&2
echo Your commit has been blocked because you didn't give any log message 1>&2
echo Please write a log message describing the purpose of your changes and 1>&2
echo then try committing again. -- Thank you 1>&2
exit 1
4

1 に答える 1

2

次の正規表現を試してください。

findstr "^[0-9]"

つまり

svnlook log %REPOS% -t %TXN% | findstr "^[0-9] > nul
if %errorlevel% gtr 0 (goto err) else exit 0
于 2010-05-27T17:29:56.680 に答える