赞
踩
1.导读
本教程主要讲解了GitLab在项目的环境搭建和基本的使用,可以帮助大家在企业中能够自主搭建GitLab服务,并且可以GitLab中的组、权限、项目自主操作。
- GitLab简介
- GitLab环境搭建
- GitLab基本使用(组、权限、用户、项目)
2.GitLab简介
GitLab是整个DevOps生命周期的第一个应用程序。其使用与GitHub类似,并且提供了许多DevOps相关的功能。GitLab提供无与伦比的可见性,更高的效率和全面的治理。这使得软件生命周期加快了200%,从根本上提高了业务速度。
官方网站:https://about.gitlab.com/
3.GitLab安装
此处以centos7为例。
1)安装并配置依赖项,同时打开HTTP访问和SSH访问
```
sudo yum install -y curl policycoreutils-python openssh-server
sudo systemctl enable sshd
sudo systemctl start sshd
sudo firewall-cmd --permanent --add-service=http
sudo systemctl reload firewalld
```
2)安装GitLab软件包
```
curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
sudo yum install gitlab-ce
```
3)初始化GitLab配置
`
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。