在 winds 下安装 git 后没有 ssh 目录|2019-04-10

在 windows 下安装git后,运行 cd ~/.ssh
$ bash: cd: /c/Users/Administrator/.ssh: No such file or directory
出现以上问题
原因:在 windows 下安装 git 后没有 ssh 目录

解决办法是:
$ ssh-keygen -t rsa -C "邮箱地址" ##回车 (一路回车 )
Generating public/private rsa key pair.
Enter file in which to save the key (/c/Users/Administrator/.ssh/id_rsa): ##回车
Created directory ‘/c/Users/Administrator/.ssh’.
Enter passphrase (empty for no passphrase): ##回车
Enter same passphrase again: ##回车

你可能感兴趣的:(在 winds 下安装 git 后没有 ssh 目录|2019-04-10)