转:VisualSVN Server提交前必须写信息(备注)
Posted 转圈又是原点
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了转:VisualSVN Server提交前必须写信息(备注)相关的知识,希望对你有一定的参考价值。
修改Pre-commit hook
@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 信息(备注)不允许为空,请填写信息然后重试 1>&2
exit 1
http://blog.csdn.NET/pksniq/article/details/24870077
以上是关于转:VisualSVN Server提交前必须写信息(备注)的主要内容,如果未能解决你的问题,请参考以下文章
(转)TortoiseSVN与VisualSVN Server搭建SVN版本控制系统
(转)将SVN从一台服务器迁移到另一台服务器(Windows Server VisualSVN Server)
TortoiseSVN与VisualSVN Server搭建SVN版本控制系统转