搭建gitlab服务器,统一管理软件项目
一、环境准备
1、启动一台虚拟机,内存至少改为4G
2、在虚拟机上配置docker
[[email protected] docker]# yum install -y docker_pkgs/*rpm
[[email protected] docker]# systemctl start docker
[[email protected] docker]# systemctl enable docker
[[email protected] docker]# docker load < images/gitlab_zh.tar
3、因为,为了方便,gitlab需要占用22端口,将node1的ssh端口改为2222
[[email protected] ~]# vim /etc/ssh/sshd_config
Port 2222
[[email protected] ~]# systemctl restart sshd
[[email protected] ~]# ssh -p2222 192.168.4.1
[[email protected] ~]# docker run -d -h gitlab --name gitlab -p 80:80 -p 443:443 -p22:22 --restart always -v /srv/gitlab/config:/etc/gitlab -v /srv/gitlab/logs:/var/log/gitlab -v /srv/gitlab/data gitlab_zh
二、gitlab用户将代码上传到服务器
1、使用ssh方式上传代码,生成密钥
[[email protected] ~]# ssh-keygen -t rsa -C "[email protected]" -b 4096
2、将公钥~/.ssh/id_rsa.pub内容复制粘贴到gitlab用户ssh密钥中
3、将已存在版本库的项目上传
[[email protected] devops]# git remote rename origin old-origin
如果出现以下以下错误,可以忽略
error: 不能重命名配置小节 ‘remote.origin‘ 到 ‘remote.old-origin‘
[[email protected] devops]# git remote add origin [email protected]:devops/core_py.git
4、向远程服务器推送代码文件
[[email protected] devops]# git push -u origin --all
[[email protected] devops]# git push -u origin --tags
5、以后再有新文件执行以下操作即可
[[email protected] devops]# cp /etc/passwd .
[[email protected] devops]# git add .
[[email protected] devops]# git commit -m "add new file passwd"
[[email protected] devops]# git push
6、其他人下载
[[email protected] demo]# git clone http://192.168.4.1/devops/core_py.git
如果已经下载,可以进入到目录中,执行
[[email protected] demo]# cd core_py/
[[email protected] core_py]# git pull
7、如果使用http上传代码,可以
[[email protected] devops]# git remote rm origin
[[email protected] devops]# git remote add origin http://gitlab/devops/core_py.git
[[email protected] devops]# git push -u origin --all
推荐网上资源:http://www.runoob.com/git/
原文地址:http://blog.51cto.com/11389430/2160014
时间: 2024-10-25 13:43:05