SVN限制Message提交的格式

限制Message提交的格式必须为以下格式

[Version]

[Description]

[TPA]

[Doors]

bash 复制代码
REPOS="$1"
TXN="$2"

# Make sure that the log message contains some text.
SVNLOOK=/usr/bin/svnlook
MSG=`$SVNLOOK log -t "$TXN" "$REPOS"`

if [[ $MSG =~ ^\[Version\].*\[Description\].*\[TPA\].*\[Doors\].* ]]; then
  exit 0
else
  echo -e "Message format error, please standardize the message format!"  1>&2
  exit 1
fi

# Check that the author of this commit has the rights to perform
# the commit on the files and directories being modified.

# All checks passed, so allow the commit.
exit 0

pre-commit 这个文件需要加读写权限!!!否则不生效

相关推荐
OP_YH4 天前
【IDEA配置】IDEA 配置Java web项目(采用Tomcat容器)
java·后端·svn·tomcat·intellij-idea
老猿的春天6 天前
TortoiseSVN 文件夹以及文件不显示差异感叹解决步骤
windows·svn
AlbertS6 天前
SVN克隆或更新遇到Error: Checksum mismatch for xxx
svn·sqlite·checksum·mismatch·svn-base
舒小羽13 天前
SVN常用命令
svn
Amarantine、沐风倩✨15 天前
Git 的基本概念和使用方式
java·javascript·git·svn·node.js·1024程序员节
李老头探索22 天前
Tortoise SVN 安装汉化教程(乌龟SVN)
svn
dawei.wang25 天前
svn status各状态含义
svn
冰激凌zz1 个月前
SVN版本回退
svn
不被定义的程序猿1 个月前
git&SVN提交规范
git·svn
peaceLT1 个月前
【SVN】一文读懂Subversion(SVN)
svn