需要从Gitblit实例到另一个实例的groovy push hook脚本 Gitblit实例
我有两个私有linux servers
,Say A
和B
并且GitBlit
安装在两者上。所有开发人员都会在服务器A
上提交并推送他们的更改,我希望B
与A
保持同步。
有一些Groovy hook
,但我是全新的,任何人都可以提供它。
PS:如果在A
上发现任何推送事件,某些脚本将会触发并且push
更改为B
答案 0 :(得分:2)
为什么不将B设置为A的mirror?
答案 1 :(得分:2)
感谢james-moger
。
基于my answer以下是脚本的快照。
File baseFolder = new File("/root/softwares/apache-tomcat-6.0.32/webapps/gitblit/WEB-INF/data/git");
File repoFolder = new File(baseFolder, repository.name);
Git git = Git.open(repoFolder, FS.detect())
git.push().setRemote("ssh://admin@111.11.111.111:29418/testrepo.git").setPushAll().call();