私はこのスクリプトをネット上で見つけましたが、リポジトリで機能していると言っている人はほとんどいませんでした。スクリプトは、コミット前のチェックでチェック中にコメントのチェックを強制できるようにすることです。問題は、SVNのhooksディレクトリに追加したところ、すべてのコミット(コメントのあるものも含む)が失敗し、このエラーメッセージ 「Commit事前コミット(終了コード255)によってブロックされ、出力がありません」
同じエラーが発生するため、スクリプトを変更したり削除したりすることはできません。このpre-commitスクリプトを元に戻す方法に関する提案はありますか?
#!/bin/bash
# [1] REPOS-PATH (the path to this repository)
# [2] TXN-NAME (the name of the txn about to be committed)
REPOS="$1"
REV="$2"
@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
# 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