我在Debian服务器上工作,在那里我安装了bugzilla。根据Gitzilla安装指南中的建议,我想将Gitzilla集成到github.com上的一个项目中,使用github.com-project作为我的中心代码库。因此,我不太确定在哪里执行以下步骤:
Switch to the hooks directory (/path/to/repository/.git/hooks) and delete the post-receive and update hooks.
Link (or copy) the gitzilla provided hooks:
ln -s $(which gitzilla-post-receive) post-receive
ln -s $(which gitzilla-update) update此外,我测试选择了我的github.com-URL来集成到/etc/gitzillarc.中,但是没有成功。安装了PyBugz,我定义了指向bugzilla的链接,即bugzilla-admin的user_name和PW。
最好的
H.M.
发布于 2014-04-22 16:28:12
https://github.com/your_repository.git/.git/hooks将是您应该执行这些步骤的路径。
如果您有一个空的存储库,那么https://github.com/your_repository.git/hooks将是路径。
https://stackoverflow.com/questions/17544630
复制相似问题