繁体   English   中英

从 Git 预接收挂钩获取脚本

[英]Sourcing a script from a Git pre-receive hook

我正在服务器中测试 git 预接收挂钩。 这是hooks/pre-receive的内容:

#!/bin/bash
echo "Hi $USER"
source pre-receive-hooks/bye

hooks/pre-receive-hooks/bye的内容是:

#!/bin/bash
echo "Bye $USER"

hooks/pre-receivehooks/pre-receive-hooks/bye文件都是可执行的,具有相同的权限,以及相同的所有者和组。

当我从客户端推送到服务器时,我收到消息:

Enumerating objects: 5, done.
Counting objects: 100% (5/5), done.
Delta compression using up to 4 threads
Compressing objects: 100% (2/2), done.
Writing objects: 100% (3/3), 287 bytes | 287.00 KiB/s, done.
Total 3 (delta 1), reused 0 (delta 0)
remote: Hi sergioro
remote: hooks/pre-receive: line 10: pre-receive-hooks/bye: No such file or directory
To drop:/git/hooks_practice.git
   3fbfa15..c15d08d  master -> master

第一个echo显正在工作,但随后source命令失败。 为什么source是失败的? 或者更一般地说,如何从 Git 挂钩中获取脚本?

我还尝试了以下命令,但推送时都返回相同的错误:

source ./pre-receive-hooks/bye   # relative path
. pre-receive-hooks/bye          # source using the dot command
./pre-receive-hooks/bye          # run script directly

source pre-receive-hooks/bye更改为source hooks/pre-receive-hooks/bye解决了这个问题。 显然 Git 挂钩的$PWD等于存储库的根目录,而不是挂钩目录。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM