【发布时间】:2014-12-07 22:37:19
【问题描述】:
我创建了一个提交后挂钩,它可以通知用户其他一些信息。 我输入了我的代码:
REPOS="$1"
REV="$2"
TXN_NAME="$3"
SVNSYNC='/opt/collabnet/csvn/bin/svnsync';
echo "my message" >&0;
echo "Your commit has been performed successfully." 1>&2;
exit 1;
您能告诉我为什么这些消息只有在我输入"exit 1" 时才能显示?
还有其他方法吗?
【问题讨论】:
标签: svn tortoisesvn hook post-commit post-commit-hook