pre-commit.cmd
@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
本文介绍了一个简单的预提交脚本,该脚本用于检查SVN提交信息是否为空。如果提交信息为空,则阻止提交,并提示用户填写提交说明。
6333

被折叠的 条评论
为什么被折叠?



