git-ssh配置和使用
Posted xqnq2007
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git-ssh配置和使用相关的知识,希望对你有一定的参考价值。
https://segmentfault.com/a/1190000002645623
1、设置Git的user name和email:(如果是第一次的话)
$ git config --global user.name "humingx"
$ git config --global user.email "[email protected]"
2、生成密钥
$ ssh-keygen -t rsa -C "[email protected]"
连续3个回车。如果不需要密码的话。
最后得到了两个文件:id_rsa
和id_rsa.pub
。
用vim打开id_rsa.pub 如果没有换行显示 ,用:set warp ,然后将里面内容粘贴至git 上
以上是关于git-ssh配置和使用的主要内容,如果未能解决你的问题,请参考以下文章