GitLab是免费的Git server, 其功能和易用性上与GitHub相比, 并不逊色. 所以内部的代码管理服务器选择上, GitLab理所当然成为首选. GitLab的安装比较简单, 按照官网的说明, 我在Ubuntu 16.4上很轻松的配置了GitLab 服务器.
Step 1: 安装必须的工具集
sudo apt-get install curl openssh-server ca-certificates postfix
Step 2: 安装GitLab CE
curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.deb.sh | sudo bash sudo apt-get install gitlab-ce
Step 3: 配置
sudo gitlab-ctl reconfigure
配置管理员
GitLab的安装已经完成了, 接下来可以用http://localhost 来登录, 第一次登录需要配置管理员的一些信息, 比如 password 等.
OK, 大功告成, 接下来就是 Enjoy it!