git ssh-key 及邮箱的配置
Posted yang220
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git ssh-key 及邮箱的配置相关的知识,希望对你有一定的参考价值。
1. 输入命令:ssh-keygen -t rsa -C “xxxx@yyy.com” 设置邮箱
2. 三次回车,完成
3. 输入命令:cat ~/.ssh/id_rsa.pub,回车, 查看生成的公钥
4. 在git里添加公钥
配置用户名及邮箱
git config --global user.name "username"
git config --global user.email "email"
以上是关于git ssh-key 及邮箱的配置的主要内容,如果未能解决你的问题,请参考以下文章