Subversion forces write log windows and Linux hooks scripts __linux

Source: Internet
Author: User
Tags goto svn alphanumeric characters

Windows:
[Code] @echo off
Setlocal
Set repos=%1
Set txn=%2
REM Check that logmessage contains at least characters
Svnlook Log "%repos%"-T "%txn%" | Findstr "..." > nul.
If%errorlevel% GTR 0 goto ERR
Exit 0
: Err
echo that logmessage contains at least alphanumeric characters. Commit aborted! 1>&2
Exit 1[/code]


Linux:

[Code]
#!/bin/sh
Repos= "$"
Txn= "$"
Svnlook=/usr/bin/svnlook
# Check that logmessage contains at least alphanumeric characters
logmsg= ' $SVNLOOK log-t "$TXN" "$REPOS" | grep "[A-za-z0-9]" | Wc-c '
If ["$LOGMSG"-lt 10];
Then
Echo-e "/that logmessage contains at least alphanumeric. Commit aborted! " 1>&2
Exit 1
Fi[/code]

Pre-revprop-change.bat files under Windows System, as follows:: LOL

REM SVN pre-revprop-change Hook allows edit of logmessages from TSVN

setlocal
Set repos=%1
Set rev=%2
Set user=%3
Set propname=%4
Set action=%5

If   not "%action%" = = "M" goto refuse
If  not "%propname%" = "Svn:log" goto refuse
Goto OK

: Refuse
Echo Cann ' t set%propname%/%action%, only Svn:log are allowed 1>&2
endlocal
Exit 1

: O K
Endlocal
Exit 0

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.