我在CentOS计算机上安装了GitLab(最新版本)和Bugzilla 4.4.1。 用户在他们的系统上创建本地存储库并推送到中央存储库,即在GitLab上。 我需要使用Gitab设置bug跟踪,以便每次推送都会更新Bugzilla并提交项目的所有提交。
我发现Gitzilla用于此类事情,但在完成安装说明后,我无法理解其中一点。
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
例如,如果用户登录到GitLab并创建一个名为samplerepo的新项目,那么在我在reOSores上的CentOS上的git帐户上,我得到以下两个条目:
/home/git/repositories/user/samplerepo.git
/home/git/repositories/user/samplerepo.wiki.git
其中,user =创建项目的用户。
所面临的问题是:
非常感谢任何帮助。