安装git
yum install git
添加git用户
groupadd git
useradd git -g git
passwd git
输入git密码
修改/etc/ssh/sshd_config
1.RSAAuthentication yes
2.PubkeyAuthentication yes
3.AuthorizedKeysFile .ssh/authorized_keys
公钥存在.ssh/authorized_keys
电脑安装git后可以在gui中直接看的rsa
$ cd/home/git/
$ mkdir.ssh #新建文件夹
$ chmod700.ssh
$ touch.ssh/authorized_keys #新建文件
$ chmod600.ssh/authorized_keys
将自己电脑的rsa填入authorized_keys 就可以不用密码提交了
初始化git仓库
$ cd /home/git
$ git init --bare test
克隆仓库
$ git clone git@服务器ip:test.git