Git复习05——GitLab

GitLab

自建代码托管平台 自己公司使用的 不想给别人开源

GitLab安装

Git复习05——GitLab_第1张图片

安装包准备

Git复习05——GitLab_第2张图片

安装脚本

vim gitlab-install.sh

sudo rpm -ivh /opt/module/gitlab-ce-13.10.2-ce.0.el7.x86_64.rpm
sudo yum install -y curl policycoreutils-python openssh-server cronie
sudo lokkit -s http -s ssh
sudo yum install -y postfix
sudo service postfix start
sudo chkconfig postfix on
curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
sudo EXTERNAL_URL="http://gitlab.example.com" yum -y install gitlab-ce

给脚本增加执行权限

chmod +x gitlab-install.sh

然后执行该脚本,开始安装 gitlab-ce,注意一定要保证服务器可以上网。

 ./gitlab-install.sh  

初始化GitLab服务

gitlab-ctl reconfigure

启动GitLab服务

执行以下命令启动 GitLab 服务,如需停止,执行 gitlab-ctl stop.

gitlab-ctl start  

使用浏览器访问Gitlab

直接访问 ip地址

首次登陆之前,需要修改下 GitLab 提供的 root 账户的密码,要求 8 位以上,包含大小写子母和特殊符号。 Atguigu.123456
然后使用修改后的密码登录 GitLab。

账号root

密码Atguigu.123456

创建仓库

Git复习05——GitLab_第3张图片

Git复习05——GitLab_第4张图片

Git复习05——GitLab_第5张图片

IDEA集成GitLab

安装 GitLab 插件

Git复习05——GitLab_第6张图片

设置 GitLab 插件

Git复习05——GitLab_第7张图片

Git复习05——GitLab_第8张图片

push 本地代码到 GitLab 远程库

获取http地址,需要注意的是默认的地址是gitlab.example.com,需要改成gitlab.gitlab-server.com. (gitlab-server是自己在Windows的hosts文件中配置的主机名)

Git复习05——GitLab_第9张图片

push 自定义地址

Git复习05——GitLab_第10张图片

Git复习05——GitLab_第11张图片

首次向连接 gitlab,需要登录帐号和密码,用 root 帐号和修改的密码登录即可。

然后就 代码 Push 成功。

只要 GitLab 的远程库连接定义好以后,对GitLab远程库进行 pull 和 clone 的操作和Github、Gitee一致。

你可能感兴趣的:(Git,git,gitlab)