git ssh密钥的使用

//配置邮箱,用户名,
git config --global user.name
git config --global user.email
git config --global --list

//生成ssh密码
ssh-keygen -t rsa -C "your account"
打开ssh密钥
cat ~/.ssh/id_rsa.pub
复制到git 版本库指定地方,即可免密访问

 保存密码

参考 

原文地址:https://www.cnblogs.com/huay/p/10795479.html