1.版本控制是指对软件开发过程中各种程序代码,配置文件及说明文档等文件变更的管理,是软件配置管理的核心思想之一。
2.常用的版本控制工具:
gitlab
subversion
3.gitlab部署
//配置yum源
[root@linuxidc ~]# cd /etc/yum.repos.d/
[root@linuxidc yum.repos.d]# curl -o 163.repo http://mirrors.163.com/.help/CentOS7-Base-163.repo
[root@linuxidc yum.repos.d]# sed -i ‘s/$releasever/7/g’ /etc/yum.repos.d/163.repo
[root@linuxidc yum.repos.d]# sed -i ‘s/^enabled=.*/enabled=1/g’ /etc/yum.repos.d/163.repo
//安装依赖包
[root@linuxidc ~]# yum -y install epel-release
[root@linuxidc ~]# yum -y install epel-release git
[root@linuxidc ~]# yum -y install curl openssh-server openssh-clients postfix cronie policycoreutils-python
//启动postfix服务并设置开机自启
[root@linuxidc ~]# systemctl restart postfix
[root@linuxidc ~]# systemctl enable postfix
//下载gitlabd 的rpm包
[root@linuxidc ~]# cd /usr/src/
[root@linuxidc ~]# wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/y um/el7/gitlab-ce-11.2.1-ce.0.el7.x86_64.rpm
//安装gitlab
[root@linuxidc src]# rpm -ivh gitlab-ce-11.2.1-ce.0.el7.x86_64.rpm
//修改配置文件
[root@linuxidc src]# vim /etc/gitlab/gitlab.rb
………………
external_url ‘http://192.168.209.12’ #将此处设为gitlab的服务器IP地址或者域名
………………
//重载配置文件并重启gitlab
[root@linuxidc src]# gitlab-ctl reconfigure
[root@linuxidc src]# gitlab-ctl restart
//查看当前的gitlab版本
[root@linuxidc src]# head -1 /opt/gitlab/version-manifest.txt
gitlab-ce 11.2.1
//设置管理员密码
[root@linuxidc ~]# gitlab-rails console production
user = User.where(id: 1).first //id为1的是超级管理员
user.password = ‘linuxidc’ //密码必须至少8个字符
user.save! //保存修改,若无问题将返回true
exit
4.gitlab管理
在浏览器中使用gitlab服务器的IP访问,页面如下图所示:
更多GitLab相关教程见以下内容:
CentOS7安装GitLab、汉化及使用 http://www.info110.com/Linux/2017-11/148223.htm
CentOS 7安装部署GitLab服务器 http://www.info110.com/Linux/2017-06/144990.htm
CentOS 7.x上GitLab搭建详细教程 http://www.info110.com/Linux/2017-12/149766.htm
CentOS 7安装部署GitLab服务器 http://www.info110.com/Linux/2017-06/144990.htm
CentOS 7使用Docker搭建GitLab服务器 http://www.info110.com/Linux/2018-04/151725.htm
Ubuntu 16.04搭建GitLab服务器 http://www.info110.com/Linux/2018-01/150319.htm
快速学会CentOS配置GitLab http://www.info110.com/Linux/2018-08/153345.htm