1.下载git最新包
https://mirrors.edge.kernel.org/pub/software/scm/git/
将最新包上传至服务器/home目录
tar -Jxvf 解压
进入git目录 ./configure --prefix=/usr/local/git
make make install
错误解决:Can't locate ExtUtils/MakeMaker.pm in @INC
yum install perl-ExtUtils-CBuilder perl-ExtUtils-MakeMaker
yum -y install gcc automake autoconf libtool make
2.下载gitlab
https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/
rpm -ivh gitlab-ce-10.8.4-ce.0.el7.x86_64.rpm
#vim /etc/gitlab/gitlab.rb
external_url 'http://ip:port' #配置仓库地址,生成的仓库地址是根据这个来的,如果这里不写明端口号的话,生成的仓库地址每次都要手动修改端口号
gitlab-ctl reconfigure # 使配置生效
gitlab-ctl start
gitlab-ctl start # 启动所有 gitlab 组件;
gitlab-ctl stop # 停止所有 gitlab 组件;
gitlab-ctl restart # 重启所有 gitlab 组件;gitlab-ctl status # 查看服务状态;
gitlab-ctl reconfigure # 启动服务;
vim /etc/gitlab/gitlab.rb # 修改默认的配置文件;
gitlab-rake gitlab:check SANITIZE=true --trace # 检查gitlab;
sudo gitlab-ctl tail # 查看日志;
3.安装postfix
yum install postfix