当前位置:   article > 正文

GitLab安装以及汉化_gitlab安装 汉化 博客

gitlab安装 汉化 博客

简介

GitLab是由GitLab Inc.开发,使用MIT许可证的基于网络的Git仓库管理工具,且具有wiki和issue跟踪功能。
GitLab 是一个数据库支持的 web 应用,所以相比于其他 git 服务器,它的安装过程涉及到更多的东西。 幸运的是,这个过程有非常详细的文档说明和支持。

安装

安装有个前提,内存最少有4G用来运行GitLab

第一步:安装

清华大学镜像站找rpm包
https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/
这里用的版本是10.0.6的

wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-10.0.6-ce.0.el7.x86_64.rpm
yum install gitlab-ce-10.0.6-ce.0.el7.x86_64.rpm  -y
  • 1
  • 2

第二步:配置

gitlab-ctl reconfigure
  • 1

第三步:启动

gitlab-ctl  start
  • 1

访问

直接用ip访问 http://192.168.253.128/
默认用户名/密码为root/5iveL!fe
在这里插入图片描述
第一次登陆会要求重新设置密码
在这里插入图片描述
然后再登陆一次就可以看到页面了
在这里插入图片描述

第四步:汉化

https://gitlab.com/xhang/gitlab
可以在这里下载tar包,现在使用的是git方式获取

yum install git  patch -y #安装git
gitlab_version=$(sudo cat /opt/gitlab/embedded/service/gitlab-rails/VERSION) #获取git版本,用于汉化
git clone https://gitlab.com/xhang/gitlab.git  #获取汉化的补丁包
cd gitlab
git diff v${gitlab_version} v${gitlab_version}-zh > ../${gitlab_version}-zh.diff
gitlab-ctl stop
patch -d /opt/gitlab/embedded/service/gitlab-rails -p1 < ../${gitlab_version}-zh.diff
gitlab-ctl start
gitlab-ctl reconfigure
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

第五步:重启

重启一下虚拟机。然后就生效了
在这里插入图片描述

第六步:添加ssh密钥

先设置一下ssh
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在虚拟机上执行

 ssh-keygen
  • 1


将公钥粘贴到那个密钥框

cat /root/.ssh/id_rsa.pub
  • 1

在这里插入图片描述
复制到
然后添加即可
在这里插入图片描述

第七步:新建项目

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
配置git

git config --global user.name "Administrator"
git config --global user.email "admin@example.com"
  • 1
  • 2

克隆仓库下来

git clone git@192.168.253.128:root/test.git
  • 1

进入仓库添加文件

cd test
touch README
touch test1
git add  .
git commit -m "add README"
  • 1
  • 2
  • 3
  • 4
  • 5

推送到仓库中

git push -u origin master
  • 1

刷新一下网页可以看到。在本地的仓库推送到过去了
在这里插入图片描述

常用命令

  • gitlab-ctl start
    启动所有 gitlab 组件;
  • gitlab-ctl stop
    停止所有 gitlab 组件;
  • gitlab-ctl restart
    重启所有 gitlab 组件;
  • gitlab-ctl status
    查看服务状态;
  • gitlab-ctl reconfigure
    启动服务;
  • vim /etc/gitlab/gitlab.rb
    修改默认的配置文件;
    检查gitlab;
  • gitlab-ctl tail
    查看日志;

参考文档:https://gitlab.com/xhang/gitlab/wikis/home

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

闽ICP备14008679号