首页 > Windows开发 > 详细

Windows Pre-commit hook for comment length Subversion

时间:2017-02-09 23:50:29      阅读:319      评论:0      收藏:0      [点我收藏+]
@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           

 svnlook log %REPOS% -t %TXN% | findstr . > nul  
 if %errorlevel% gtr 0 (goto err) else exit 0  

 :err  
 echo. 1>&2  
 echo Your commit has been blocked because you didn‘t enter a comment. 1>&2  
 echo Write a log message describing the changes made and try again. 1>&2
 echo Thanks 1>&2
 exit 1

http://stackoverflow.com/questions/869248/windows-pre-commit-hook-for-comment-length-subversion

Windows Pre-commit hook for comment length Subversion

原文:http://www.cnblogs.com/hydonlee/p/6384401.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!