我有以下问题 git push over SSH不会激活远程挂钩。
Git repo是Linux ubuntu的服务器。
Git版本1.7.9.5
我的回购路径 /path/test.git/hooks/update
;使用Update
可执行文件(chmod +x
)
在 update
文件中,我只进行了简单的检查以确保其有效。
#!/bin/sh
echo "Hello World"
echo "098" >> test.txt
exit 1
我从Ubuntu(在Virtualbox上)连接以下步骤:
touch somefile.txt
git add -A
git commit -ma "my somefile add
然后:
git push origin HEAD:refs/for/master
Counting objects: 3, done.
Compressing objects: 100% (2/2), done.
Writing objects: 100% (3/3), 291 bytes | 0 bytes/s, done.
Total 3 (delta 0), reused 1 (delta 0)
remote: Processing changes: new: 1, refs: 1, done
remote:
remote: New Changes:
remote: https://URL/gerrit/15676
remote:
To ssh://mylogin@URL:29418/reponame
* [new branch] HEAD -> refs/for/master
如您所见,我的更新脚本在“推送”期间未激活。
有什么可以检查为什么会这样?