文章目录
- Git是什么?
- Github和gitlab之间的区别
- 部署Git
- 部署Gitlab
Git是什么?
版本控制是一种用于记录一个或多个文件内容变化,方便我们查阅特定版本修订情况的系统。
就是通过git,将文件提交到代码仓库。
Github和gitlab之间的区别
GitHub 作为开源代码库,拥有超过 900 万的开发者用户,目前仍然是最火的开源项目托管平台,GitHub 同时提供公共仓库和私有仓库,但如果使用私有仓库,是需要付费的。
GitLab 解决了这个问题,你可以在上面创建私人的免费仓库
GitLab:
- 允许免费设置仓库权限
- 允许用户选择分享一个 project 的部分代码;
- 允许用户设置 project 的获取权限,进一步提升安全性;
- 可以设置获取到团队整体的改进进度;
- 通过 innersourcing 让不在权限范围内的人访问不到该资源;
部署Git
[root@hh15 ~]# yum install git -y
部署Gitlab
- 搭建yum源 可以选择在物理机上面直接安装
使用国内镜像进行获取比较快
cd /etc/yum.,repos.d/
Vim gitlab.repo
[tsinghua]
Name=tsinghua
Baseurl=https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/
Gpgcheck=0
Enabled=1
[root@hh15 yum.repos.d]# yum install gitlab-ce
[root@hh15 yum.repos.d]# cd /etc/gitlab
[root@hh15 gitlab]# ls
gitlab.rb
[root@hh15 gitlab]# vim gitlab.rb
[root@hh15 gitlab]# gitlab-ctl reconfigure
- 浏览器访问http://172.25.65.15
注意防火墙要关闭
设置密码(不少于八位)
点击创建新项目,如果没有进行过ssh-key认证,页面会出现提醒,点击进行设置即可
- 生成密钥
- 将ssh-key进行复制
进行project的创建
[kiosk@foundation65 ~]$ git clone git@172.25.65.14:root/demo.git
[kiosk@foundation65 ~]$ cd demo
[kiosk@foundation65 demo]$ ls
README.md
[kiosk@foundation65 demo]$ git remote -v
origin git@172.25.65.14:root/demo.git (fetch)
origin git@172.25.65.14:root/demo.git (push)
说明git和gitlab关联成功