git 服务器搭建+免密码操作

参考了链接:

1、http://www.linuxidc.com/Linux/2015-09/123670.htm

2、http://www.linuxidc.com/Linux/2015-09/123670.htm

3、http://www.linuxidc.com/Linux/2011-12/48555.htm

注意:

一、本地的id_rsa.pub,必须上传服务器cat id_rsa.pub > authorized_keys

二 、 

chmod 700 -R .ssh

authorized_keys 权限改为644

三、重启git /etc/init.d/sshd restart

四、

打开文件/etc/ssh/sshd_config

RSAAuthentication yes            #开启RSA认证功能

PubkeyAuthentication yes      #开启公匙认证

原文地址:https://www.cnblogs.com/wl14253/p/7460587.html