当前位置:   article > 正文

gitlab的使用方法,详解gitlab操作_gitlab如何使用

gitlab如何使用

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配置

`

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/660378
推荐阅读
相关标签
  

闽ICP备14008679号