web-dev-qa-db-ja.com

コメントなしでSubversionのコミットを防ぐにはどうすればよいですか?

コミットコメントが入力されていないときにSubversionコードリポジトリへのコミットを防ぐ方法を知っている人はいますか?

65
user234518

フックを使用できます(<repository>/hooksと名前を付けますpre-commit.bat (ウィンドウズ)):

@echo off
::
:: Stops commits that have empty log messages.
::

setlocal

rem Subversion sends through the path to the repository and transaction id
set REPOS=%1
set TXN=%2

rem check for an empty log message
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 give any log message 1>&2
echo Please write a log message describing the purpose of your changes and 1>&2
echo then try committing again. -- Thank you 1>&2
exit 1

src: http://www.anujgakhar.com/2008/02/14/how-to-force-comments-on-svn-commit/

58
miku

Linux用の@mikuの詳細なエラーメッセージを含む事前コミットフックを次に示します。

#!/bin/sh

REPOS="$1"
TXN="$2"

SVNLOOK=/usr/bin/svnlook
$SVNLOOK log -t "$TXN" "$REPOS" | \
   grep "[a-zA-Z0-9]" > /dev/null

GREP_STATUS=$?
if [ $GREP_STATUS -ne 0 ]
then
    echo "Your commit has been blocked because you didn't give any log message" 1>&2
    echo "Please write a log message describing the purpose of your changes and" 1>&2
    echo "then try committing again. -- Thank you" 1>&2
    exit 1
fi
exit 0
20
palacsint

実際、Subversionリポジトリを作成すると、そのhooksサブディレクトリにはすでにフックサンプルが含まれています。フックのパラメーターの詳細については、pre-commit.tmplと呼ばれるものをご覧ください。また、探しているフックの例も含まれています。

#!/bin/sh
REPOS="$1"
TXN="$2"

# Make sure that the log message contains some text.
SVNLOOK=/usr/local/bin/svnlook
$SVNLOOK log -t "$TXN" "$REPOS" | \
   grep "[a-zA-Z0-9]" > /dev/null || exit 1

Subversionマシンで実行可能であれば、任意のスクリプトまたは言語でフックを記述できます。

18
Eli Acherkan

15文字を超えるLinuxスクリプト-

#!/bin/bash
REPOS="$1"
TXN="$2"
# Make sure that the log message contains some text.
SVNLOOK=/usr/bin/svnlook
# Comments should have more than 5 characters
LOGMSG=$($SVNLOOK log -t "$TXN" "$REPOS" | grep [a-zA-Z0-9] | wc -c)
if [ "$LOGMSG" -lt 15 ];
then
echo -e "Please provide a meaningful comment when committing changes." 1>&2
exit 1
fi

ソース- http://Java.dzone.com/articles/useful-Subversion-pre-commit

6
rahulqelfo

事前コミットフックを作成します。以下に 一部の手順 を自分で行う方法を示します。または here は、10文字より短いコミットメッセージですべてを拒否するフックスクリプトの例です。

6
Amber

TortoiseSVNのみを使用している場合、TortoiseSVNのプロパティをルートディレクトリに追加できます:プロパティ名:tsvn:logminsize値:1これにより、TortoiseSVNコミットウィンドウの[OK]ボタンが無効になり、メッセージが空になります。このプロパティはTortoiseSVN固有であり、他のSVNクライアントでは機能しない可能性があることに注意してください。

6
user7708