赞
踩
稍具规模一点的公司都会搭建属于自己的git,svn,而内部git用的最多的则是gitlab,虽然官网已经提供了非常多的功能,但内网搭建更能保证项目的私有性,只有公司内部员工才可以访问,更加安全。
GitLab分为社区版(GitLab Community Edition)和企业版(GitLab Enterprise Edition)。社区版免费,企业版收费,但是功能比社区版多。根据目前的需求,选择安装社区版(GitLab-CE)。
sudo yum install -y curl policycoreutils-python openssh-server
sudo systemctl enable sshd
sudo systemctl start sshd
sudo yum install postfix
sudo systemctl enable postfix
1. 运行命令vim /etc/postfix/main.cf打开main.cf文件,找到内容:inet_interfaces = localhost
2. 改为 inet_interfaces = all
3. 运行命令sudo systemctl start postfix启动Postfix服务。
curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
sudo EXTERNAL_URL="GitLab服务器的公网IP地址" yum install -y gitlab-ce
1. 在浏览器输入公网ip即可进入gitlab登录页面,首次登录使用用户名 `root`
2. 首次登录会强制用户修改密码。密码修改成功后,输入新密码进行登录。
1. 安装git(有的话省略)
yum install git
2. 生成密钥文件。
使用ssh-keygen生成密钥文件.ssh/id_rsa,再将公钥文件id-rsa.pub中的内容粘帖到GitLab服务器的SSH-key的配置文件中。(和普通gitlab使用一样)
3. 在gitlab主页新建一个project
4. 添加ssh key,导入步骤2中生成的密钥文件内容。
1. 配置使用Git仓库的人员姓名,email。
git config --global user.name "testname"
git config --global user.email "abc@example.com"
2. 克隆项目
git clone git@iZxxxxxxxxxxxxxxxxx3Z:root/test.git
进入项目目录,更改文件然后push一下就行
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。