关于svn hooks拦截设置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于svn hooks拦截设置相关的知识,希望对你有一定的参考价值。

这边公司svn需要设置拦截请求

1 设置必须注释至少5个字符才能提交

LOGMSG=`$SVNLOOK log -t "$TXN" "$REPOS" | grep "[a-zA-Z0-9]" | wc -c`
if [ "$LOGMSG" -lt 5 ];
then
   echo -e "大哥你要写点注释啊,不然不能提交." 1>&2
   exit 1
fi
# All checks passed, so allow the commit.
exit 0

2 提交代码时,后缀不能有关键字

classPath|project|settings|idea|iml|class
# file filter: we only allow commit .c && .h files.
FILTER=‘\.(classPath|project|settings|idea|iml|class)$‘
files=$($SVNLOOK changed -t $TXN $REPOS | awk ‘{print $2}‘)
# check
for f in $files
do
    # check file type
    if echo $f | grep -Eq $FILTER ; then
        # valid file
        echo "File $f is a .classPath or .project or .settings or .idea or .iml or .class file" >> /dev/stderr
        exit 1
    fi
done
exit 0


本文出自 “熊仔的博客” 博客,请务必保留此出处http://9821177.blog.51cto.com/9811177/1752304

以上是关于关于svn hooks拦截设置的主要内容,如果未能解决你的问题,请参考以下文章

svn hooks 同步设置

如何设置SVN提交时强制添加注释

CBT Hook dll,拦截窗口被调整大小

配置SVN的hooks功能自动更新代码

CentOS7安装配置svn及svn hook实战

拦截http协议封包hook哪些