zoukankan      html  css  js  c++  java
  • [转] windows下Svn服务器之必须提交修改注释篇

    1. 强制添加注释信息

    找到Respositories目录下对应项目里的hooks目录下建立pre-commit.bat文件,复制如下内容: 

    @echo off
    set SVNLOOK="C:Program FilesVisualSVNinsvnlook.exe"
    setlocal
    set REPOS=%1
    set TXN=%2
    rem check that logmessage contains at least 10 characters
    %SVNLOOK% log "%REPOS%" -t "%TXN%" | findstr ".........." > nul
    if %errorlevel% gtr 0 goto err
    exit 0
    :err
    echo Empty log message not allowed. Commit aborted! 1>&2
    exit 1
    

      

    2. 允许用户修改注释信息
    找到Respositories目录下对应项目里的hooks目录下建立pre-revpos-change.bat,复制如下内容:
    @ECHO OFF 
    set repos=%1 
    set rev=%2 
    set user=%3 
    set propname=%4 
    set action=%5 
      
    :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 
    :: Only allow changes to svn:log. The author, date and other revision 
    :: properties cannot be changed 
    :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 
    if /I not '%propname%'=='svn:log' goto ERROR_PROPNAME 
      
    :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 
    :: Only allow modifications to svn:log (no addition/overwrite or deletion) 
    :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 
    if /I not '%action%'=='M' goto ERROR_ACTION 
      
    :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 
    :: Make sure that the new svn:log message contains some text. 
    :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 
    set bIsEmpty=true 
    for /f "tokens=*" %%g in ('find /V ""') do ( 
     set bIsEmpty=false 
    ) 
    if '%bIsEmpty%'=='true' goto ERROR_EMPTY 
      
    goto :eof 
      
      
      
    :ERROR_EMPTY 
    echo Empty svn:log properties are not allowed. >&2 
    goto ERROR_EXIT 
      
    :ERROR_PROPNAME 
    echo Only changes to svn:log revision properties are allowed. >&2 
    goto ERROR_EXIT 
      
    :ERROR_ACTION 
    echo Only modifications to svn:log revision properties are allowed. >&2 
    goto ERROR_EXIT 
      
    :ERROR_EXIT 
    exit /b 1
    

      

  • 相关阅读:
    ceil函数 floor函数 floor函数 round函数 取整函数
    Havel–Hakimi algorithm(判断度数序列是否可图)
    最小费用最大流
    数论 (大数,小费马定理,欧拉定理,威尔逊定理,快速数论变换(NNT)模版)
    Give Candies(费马小定理)
    Yet Another Crosses Problem
    并查集
    杭电多校第一场-M-Code
    2018ICPC赛后总结
    营业额统计
  • 原文地址:https://www.cnblogs.com/asyuras/p/3242452.html
Copyright © 2011-2022 走看看