git 钩子日志在哪里?
Where are git hooks logs?
我正在使用这个钩子:https://gist.github.com/noelboss/3fe13927025b89757f8fb12e9066f2fa#file-post-receive
由于某种原因,它不起作用。我想知道发生了什么并检查日志,特别是阅读“回声”行(以查看执行的内容),但我不知道在哪里可以阅读它们......
我插入了另一条回声线来检查是否一切都正确执行:
#!/bin/bash
TARGET="/home/webuser/deploy-folder"
GIT_DIR="/home/webuser/www.git"
BRANCH="master"
echo "This is an executed hook!"
while read oldrev newrev ref
do
# only checking out the master (or whatever branch you would like to deploy)
if [ "$ref" = "refs/heads/$BRANCH" ];
then
echo "Ref $ref received. Deploying ${BRANCH} branch to production..."
git --work-tree=$TARGET --git-dir=$GIT_DIR checkout -f $BRANCH
else
echo "Ref $ref received. Doing nothing: only the ${BRANCH} branch may be deployed on this server."
fi
done
我的问题不是为什么我的挂钩不起作用(仅供参考,这是由于“对象”子文件夹中的权限配置错误)。
我的问题是:“回声”线去哪里了?
根据 githooks(5)
,“标准输出和标准错误输出都转发到另一端的 git send-pack,因此您可以简单地为用户回显消息”
因此,如果您 运行 git push
来自交互式终端,您应该会在终端上看到 echo 的输出。如果要将它们存储在文件中,则需要将 stdout 重定向到文件。或者从终端缓冲区中检索数据。 (例如,在 tmux 窗格历史记录中)。
我正在使用这个钩子:https://gist.github.com/noelboss/3fe13927025b89757f8fb12e9066f2fa#file-post-receive 由于某种原因,它不起作用。我想知道发生了什么并检查日志,特别是阅读“回声”行(以查看执行的内容),但我不知道在哪里可以阅读它们...... 我插入了另一条回声线来检查是否一切都正确执行:
#!/bin/bash
TARGET="/home/webuser/deploy-folder"
GIT_DIR="/home/webuser/www.git"
BRANCH="master"
echo "This is an executed hook!"
while read oldrev newrev ref
do
# only checking out the master (or whatever branch you would like to deploy)
if [ "$ref" = "refs/heads/$BRANCH" ];
then
echo "Ref $ref received. Deploying ${BRANCH} branch to production..."
git --work-tree=$TARGET --git-dir=$GIT_DIR checkout -f $BRANCH
else
echo "Ref $ref received. Doing nothing: only the ${BRANCH} branch may be deployed on this server."
fi
done
我的问题不是为什么我的挂钩不起作用(仅供参考,这是由于“对象”子文件夹中的权限配置错误)。 我的问题是:“回声”线去哪里了?
根据 githooks(5)
,“标准输出和标准错误输出都转发到另一端的 git send-pack,因此您可以简单地为用户回显消息”
因此,如果您 运行 git push
来自交互式终端,您应该会在终端上看到 echo 的输出。如果要将它们存储在文件中,则需要将 stdout 重定向到文件。或者从终端缓冲区中检索数据。 (例如,在 tmux 窗格历史记录中)。