简单Git服务器搭建

安装git

shell# yum install git

添加git用户

shell# useradd git

配置git用户使用git-shell登录系统

#/etc/passwd
#将git用户中最后/bin/bash改为/usr/bin/git-shell
git:x:1001:1001::/home/git:/usr/bin/git-shell

设置免密码使用GIT

在客户端使用ssh-agent创建RSA公钥文件

shell> ssh-agent -t rsa

将会在~/.ssh目录中生成RSA公钥文件id_rsa.pub

将该文件内容添加到/home/git/.ssh/authorized_keys文件中

shell# cat /path/to/id_rsa.put >> /home/git/.ssh/authorized_keys

修改/home/git/.ssh和/home/git/.ssh/authorized_keys权限

shell# chmod 700 /home/git/.ssh
shell# chmod 600 /home/git/.ssh/authorized_keys

创建GIT仓库

创建仓库主目录

shell# mkdir /opt/git

创建GIT项目

shell# cd /opt/git
shell# git init --bare test.git
shell# chown -R git.git test.git

这样就可以使用git了

shell> git clone git@server-host:/opt/git/test.git
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值