Win7下Git SSH 创建Key
Posted 不由分说
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Win7下Git SSH 创建Key相关的知识,希望对你有一定的参考价值。
前提:装好git,打开git bash。
1、进入.ssh文件夹:cd ~/.ssh/
如果没有这个文件夹,自己创建一个:mkdir ~/.ssh
2、设置git全局的name和email,如果事先已经配置过了,就不用再配置了。
git config --global user.name "yourname"
git config --global user.email "[email protected]"
3、生成你的key: ssh-keygen -t rsa -C "[email protected]"
过程中需要回车几次,成功后会得到两个文件:id_rsa和id_rsa.pub。
文件位置:C:\Users\Administrator\.ssh 跟你的不一定完全一样
4、用记事本打开id_rsa.pub,复制里面的全部内容到git上的key粘贴就行了。
以上是关于Win7下Git SSH 创建Key的主要内容,如果未能解决你的问题,请参考以下文章
关于 git 本地创建 SSH Key 遇到的一点问题(①file to save the key & ②the authenticity of host...)