git服务器搭建

几步吧
1.客户端ssh-keygen -t rsa
2.客户端ssh-copy-id -i git@m 
3.git服务器要设置git密码
echo "xx"|passwd --stdin git
4.修改git shell
vim /etc/shells
which git-shell
5.su - git
csh -c /opt/soft/git/bin/git-shell
6.服务端
cd /data/git   git init --bare project.git
7.客户端
git clone git@m:/data/git/project.git

你可能感兴趣的:(ssh,git)