标签: SVN

Linux 下svn提交不允许空日志配置方法

1. 在hooks目录里,复制文件pre-commit.tmpl到pre-commit 2. 修改pre-commit文件,找到下面两行代码注释掉 “$REPOS”/hooks/commit-access-control.pl “$REPOS” $TXN “$REPOS”/hooks/commit-access-control.cfg 3. 在set -e这行的下面添加一段 LOGMSG=`$SVNLOOK log -t “$TXN” “$REPOS” | grep “[a-zA-Z0-9]” …

阅读全文 »

Windows 下svn提交不允许空日志配置方法

如果要求提交版本库时必须写日志,设置如下 VisualSVN Server下右键项目 “所有任务”》“Manage Hooks” 》选中Pre-commit hook然后edit编辑,添加如下代码 @echo off :: :: Stops commits that have empty log messages. :: @echo off set svnlook=”C:\Program Files\VisualSVN Server\bin\svnlook.exe” setlocal rem S…

阅读全文 »

设置SVN为Windows系统服务

方法一: SVNService(将svn作为Windows服务运行的工具) SVN Service Wrapper for Windows This is my Win32 Service wrapper for SVN. Source is included, and its in the public domain. No need to copyright this stuff. Usage instructions: SVNService -? to display this list …

阅读全文 »