gitlab 安装

https://about.gitlab.com/downloads/


多人合作的GITLAB

首先需要管理登陆创建一个 Group,然后在Group里面再创建版本库,再把需要合作的人员的用户名加入到此Group组中即可;




Centos6:

#安装依赖软件
sudo yum install curl openssh-server postfix cronie
#开机启动
sudo service postfix start
sudo chkconfig postfix on
sudo lokkit -s http -s ssh
#安装插件
curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
#安装gitlab
sudo yum install gitlab-ce
#配置gitlab
sudo gitlab-ctl reconfigure
----------------------------------------------
Username: root 
Password: 5iveL!fe


Ubuntu14:

#安装依赖包
sudo apt-get install curl openssh-server ca-certificates postfix
#
curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.deb.sh | sudo bash
#安装gitlab
sudo apt-get install gitlab-ce
#配置
sudo gitlab-ctl reconfigure
-----------------------------------------------
Username: root 
Password: 5iveL!fe


你可能感兴趣的:(gitlab)