Gerrit
DawnRayYang
我觉得偶尔我还是灵光~~
展开
-
ubuntu设置gerrit开机自动启动
安装gerrit的时候,会有一个安装目录在它的下面有个 bin/gerrit.sh文件把这个文件拷贝到/etc/init.d下 改名叫做 gerrit然后用sysv-rc-conf工具,这个没有可以直接apt-get install进行安装然后执行sysv-rc-conf,找到gerrit的那一行,我把2~5都X上然后重启下系统,/etc/rc*.d下面就都有对应的文件了,我这原创 2014-01-22 11:12:48 · 5254 阅读 · 0 评论 -
Jenkinks使用163邮箱时提示553 mail from must equal authorized user
这是因为要在设置里面的Jenkins Location System Admin e-mail address 这个地方看看配置了没有这里面写上发件人的邮箱地址然后测试邮件就能发送成功了原创 2014-01-22 13:58:40 · 11748 阅读 · 2 评论 -
ubuntu设置jenkins开机自动启动
本来我没有找到类似于gerrit的启动脚本但是万能的google告诉了我,人家官网上提供了……https://wiki.jenkins-ci.org/display/JENKINS/Installing+Jenkins+as+a+Unix+daemon以及https://wiki.jenkins-ci.org/display/JENKINS/JenkinsLinuxStar原创 2014-01-22 11:33:13 · 8944 阅读 · 1 评论 -
关于Gerrit的邮件设置问题
由于想搭建CI系统 gitlab+gerrit+jenkins因此参考了http://longgeek.com/2013/12/26/ci-system-structures-iii-gerrit-installation-configuration/ 这篇文章是 Nginx的,然后我就各种收不到验证邮件了下面是能用的配置[gerrit] basePath = git ca原创 2014-01-23 15:24:54 · 19901 阅读 · 0 评论 -
Ubuntu 建立 Gerrit服务器 配置文件
uname -aLinux yangyang 3.8.0-32-generic #47~precise1-Ubuntu SMP Wed Oct 2 16:19:35 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux安装包使用的是:gerrit-2.8-rc3.war目录安装在:/home/gerrit2/gerrit_application_dir原创 2014-01-18 15:00:57 · 9705 阅读 · 4 评论 -
Gerrit 提交commit
git push origin HEAD:refs/for/masterEnter passphrase for key '/home/gerrit2/.ssh/id_rsa': Counting objects: 4, done.Delta compression using up to 4 threads.Compressing objects: 100% (2/2), don原创 2014-01-18 15:42:46 · 19294 阅读 · 0 评论 -
Gerrit 添加一个已经有的git工程到gerrit服务器
The other alternative is if you already have a git project that you want to try out Gerrit on. First you have to create the project. This is done via the SSH port:首先创建这个项目 user@host:~$ ssh原创 2014-01-18 15:56:55 · 12404 阅读 · 1 评论 -
Gerrit 提交更改到gerrit服务器
一般都是git push 但是现在要push到一个虚拟的分支上面Usually when you push to a remote git, you push to the reference '/refs/heads/branch', but when working with Gerrit you have to push to a virtual branch represent原创 2014-01-18 15:59:20 · 1649 阅读 · 0 评论 -
Gerrit 创建一个新工程
user@host:~$ ssh -p 29418 user@localhost gerrit create-project --empty-commit --name demo-project上面就是命令,-p应该是指定端口号user是登陆的名字localhost本地测试是127.0.0.1,要看服务器怎么配置了然后这个创建的是个git仓库原创 2014-01-18 15:54:46 · 13138 阅读 · 0 评论