SVN提交时强制用户写日志
生活随笔
收集整理的這篇文章主要介紹了
SVN提交时强制用户写日志
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
? 在使用SVN進行項目管理的過程中,為了對各版本提交狀況進行了解,我們需要在SVN提交過程中強制用戶輸入一定的日志。
下面介紹一下如何來限制用戶SVN提交時必須輸入日志。
步驟:
?
1、進入SVN倉庫的hooks目錄,把pre-commit.tmpl文件重命名為pre-commit
?
2、修改pre-commit文件
修改前:
REPOS="$1" TXN="$2" # Make sure that the log message contains some text. SVNLOOK=/usr/bin/svnlook $SVNLOOK log -t "$TXN" "$REPOS" | \ grep "[a-zA-Z0-9]" > /dev/null || exit 1 # Check that the author of this commit has the rights to perform # the commit on the files and directories being modified. commit-access-control.pl "$REPOS" "$TXN" commit-access-control.cfg || exit 1 # All checks passed, so allow the commit. exit 0修改后:
REPOS="$1" TXN="$2" # Make sure that the log message contains some text. SVNLOOK=/usr/bin/svnlook #$SVNLOOK log -t "$TXN" "$REPOS" | \ # grep "[a-zA-Z0-9]" > /dev/null || exit 1 # Check that the author of this commit has the rights to perform # the commit on the files and directories being modified. #commit-access-control.pl "$REPOS" "$TXN" commit-access-control.cfg || exit 1 LOGMSG=`$SVNLOOK log -t "$TXN" "$REPOS" | grep "[a-zA-Z0-9]" | wc -c` if [ "$LOGMSG" -lt 10 ];#要求注釋不能少于10個字符 then echo -e "\n注釋不能為空,且字數(shù)必須大于10個字符." 1>&2 exit 1 fi # All checks passed, so allow the commit. exit 0其實就是把源文件中的以下3行進行注釋:
$SVNLOOK log -t "$TXN" "$REPOS" | \ grep "[a-zA-Z0-9]" > /dev/null || exit 1 commit-access-control.pl "$REPOS" "$TXN" commit-access-control.cfg || exit 1然后添加以下幾行命令:
LOGMSG=`$SVNLOOK log -t "$TXN" "$REPOS" | grep "[a-zA-Z0-9]" | wc -c` if [ "$LOGMSG" -lt 10 ];#要求注釋不能少于10個字符 then echo -e "\nLog message cann't be empty! you must input more than 10 chars as comment!." 1>&2 exit 1 fi3、把pre-commit文件修改為755
chmod 755 pre-commit修改完后,測試了一下,在沒有輸入日志時提交SVN,提示錯誤
Commit failed (details follow): Commit blocked by pre-commit hook (exit code 1) with output: 注釋不能為空,且字數(shù)必須大于10個字符輸入一定的字數(shù)后提交成功!
?
這里的錯誤提示可以修改echo 里面輸出的內容:
echo -e "\nLog message cann't be empty! you must input more than 10 chars as comment!。" 1>&2總結
以上是生活随笔為你收集整理的SVN提交时强制用户写日志的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 贵州省黔南马奶营天坑底下温度多少度?
- 下一篇: 斗牛士电吹管是国产还是进口〈?