将此挂钩与VisualSVN服务器一起使用,将其添加到pre-commit.bat中。

我的问题是如何添加一个规则,即评论必须始终以数字值开头?我希望评论的第一部分始终是错误跟踪器的问题编号。例如。 “ 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
有帮助吗?

解决方案

尝试遵循正则表达式:

findstr "^[0-9]"

IE

svnlook log %REPOS% -t %TXN% | findstr "^[0-9] > nul
if %errorlevel% gtr 0 (goto err) else exit 0
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top