git服务器比较有名的是gitosis和gitolite,这两个管理和使用起来稍微有些复杂,没有web页面,而gitlab则是类似于github的一个工具,github无法免费建立私有仓库,并且为了代码安全,于是在内网安装了一个自己实验室的一个git服务器,多方比较,选择了gitlab,gitlab有很多依赖,而bitnami制作了一键安装的包,下载链接:https://bitnami.com/redirect/to/37478/bitnami-gitlab-7.0.0-0-linux-installer.run ,使得安装如此简洁。
1. 安装的过程中,会设置一个管理员账户,这个可以用来登陆,并且,gitlab的成员不能自己随便申请,需要管理员进行邀请;
2. 设置ssh,参见help:
(1)查看自己之前是否生成过ssh密钥:
[plain] view plaincopyprint?
- cat ~/.ssh/id_rsa.pub
cat ~/.ssh/id_rsa.pub
如果出现一段ssh-rsa开头的,表示已经生成了,可以跳过此步骤;
(2)如果之前没有生成ssh密钥,使用命令:
[plain] view plaincopyprint?
- ssh-keygen -t rsa -C "[email protected]"
ssh-keygen -t rsa -C "[email protected]"
来生成密钥。其中生成的文件,id_rsa为自己电脑上的私钥,id_rsa.pub为放在服务器上验证的公钥。
(3)将ssh的公钥放到gitlab上面,页面如下所示:
点击添加ssh key即可;
3. 工作流程,还是看gitlab的帮助文档,如下所示:
翻译一下。。。
(1) 克隆管理员建立好的项目:
[plain] view plaincopyprint?
- git clone [email protected]:project-name.git
git clone [email protected]:project-name.git
(2)创建自己的本地分支(分支的命名采用小驼峰式命名法,使用自己的名字+功能,比如zyHighway,不要使用特殊字符):
[plain] view plaincopyprint?
- git checkout -b $feature_name
git checkout -b $feature_name
(3)写代码,将写好的代码提交到本地分支中:
[plain] view plaincopyprint?
- git commit -am "My feature is ready"
git commit -am "My feature is ready"
(4)把分支push到Gitlab服务器上:
[plain] view plaincopyprint?
- git push origin $feature_name
git push origin $feature_name
(5)在Gitlab的提交页面,查看自己提交的代码;
(6)提交一个合并请求;
(7)管理员审核代码,决定是否合并代码到主分支上。
4. 分支模型
master分支中,保留足够稳定的代码,即已经发布或者即将发布的代码; develop分支,用于后续开发,一旦通过稳定性测试,就合并到master分支中;在develop分支的基础上,产生各个模块分支,模块功能实现之后,合并到develop分支上,测试稳定之后,再合并到master分支中。
5. 情景模拟
(1)管理员zhaoyu,新建一个项目vanet,并邀请huqiong加入,角色为开发者:
(2)成员zhaoyu克隆项目,写了一份代码,并将写好的代码上传至服务器的zhaoyuHighway分支上:
去提交页面,发现已经建立了一个新的分支,并且可以向管理员提交合并请求,管理员关联的邮箱会受到对应的邮件:
浏览一下提交的代码:
目前就到这里,后期还会继续更新。
附:
1. 服务器怎么关闭和启动gitlab服务器,并设为开机启动项:
在安装的目录下有个文件:ctlscript.sh,通过./ctlscript.sh start可以启动,具体在README文件中。
更改文件权限:chown git:git ctlscript.sh
添加对应命令到启动文件:/etc/rc.local中:./opt/gitlab-7.0.0-0/ctlscript.sh start
2. 修改[email protected]_name中的domain_name
在安装时,需要设定domain_name, 我这里设置成我的公网的ip,如果没有设置好的话,可以参考帖子:点击打开链接 ,修改文件:
[plain] view plaincopyprint?
- /home/git/gitlab/apps/gitlab/htdocs/config/gitlab.yml
/home/git/gitlab/apps/gitlab/htdocs/config/gitlab.yml
将两处的host,修改成外网ip即可。
3. thinkserver安装红帽系统
采用thinkserver RD340来搭建服务器,支持的操作系统有红帽。 安装系统先用自带光盘引导/分区,再用系统光盘进行安装,安装好之后,重启会出现光标,注意这里仍然需要插入安装光盘,此时还没有完成安装。
在红帽上安装好系统之后,gitlab的访问速度非常慢,后来发现是网卡的问题,把网线重新插拔就好来。
时区设定,在地理位置那一栏一直找不到亚洲/上海,就把地理位置删除来,自己设定时间,这样在网页上显示的一些时间就不会出错来。
4. 数据迁移(ubuntu的7.1gitlab迁移到redhat的7.8)
待写
5. 关于7.8.1的自由注册
配置一下邮箱,就可以自动注册了,但是这样不便于团队的保密工作,还是采用邀请的方式来注册。
6. 将原来仓库的代码上传到新的服务器上,包括commit的记录等log:
[plain] view plaincopyprint?
- [email protected]:~/longmenshan/longmenshan$ git push -u origin master
- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
- @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @
- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
- IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
- Someone could be eavesdropping on you right now (man-in-the-middle attack)!
- It is also possible that a host key has just been changed.
- The fingerprint for the RSA key sent by the remote host is
- f9:46:83:46:cd:62:60:56:bb:df:19:c0:47:8d:b0:be.
- Please contact your system administrator.
- Add correct host key in /home/zy/.ssh/known_hosts to get rid of this message.
- Offending ECDSA key in /home/zy/.ssh/known_hosts:2
- remove with: ssh-keygen -f "/home/zy/.ssh/known_hosts" -R 222.197.180.140
- RSA host key for 222.197.180.140 has changed and you have requested strict checking.
- Host key verification failed.
- fatal: Could not read from remote repository.
[email protected]:~/longmenshan/longmenshan$ git push -u origin master @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! Someone could be eavesdropping on you right now (man-in-the-middle attack)! It is also possible that a host key has just been changed. The fingerprint for the RSA key sent by the remote host is f9:46:83:46:cd:62:60:56:bb:df:19:c0:47:8d:b0:be. Please contact your system administrator. Add correct host key in /home/zy/.ssh/known_hosts to get rid of this message. Offending ECDSA key in /home/zy/.ssh/known_hosts:2 remove with: ssh-keygen -f "/home/zy/.ssh/known_hosts" -R 222.197.180.140 RSA host key for 222.197.180.140 has changed and you have requested strict checking. Host key verification failed. fatal: Could not read from remote repository.
参考帖子:点击打开链接 将之前的known_hosts中的记录删掉即可。
参考:
1. gitlab多人协同工作:http://herry2013git.blog.163.com/blog/static/219568011201341111240751,原作者还制作了视频教程,是不错的参考资料;
2. 《pro Git中文版》,熟悉git常用操作和基本原理;
3.《Git 权威指南》,深入学习Git
http://blog.csdn.net/zy416548283/article/details/38057925