简体   繁体   中英

Accessing to generated SSH key with Git bash

I generated a ssh key with git bash. after generating, console showed me:

Your identification has been saved in ***
Your public key has been saved in ***.pub

after that, when I use $ls -al ~/.ssh , it says //No such file or directory .

I also tried $ ls ~/.ssh/*.sshpub and $ ls -al ~/.ssh # and got same result

HOW CAN I SEE MY SSH key?

Try generating it again with:

ssh-keygen -t rsa -P ""

It should generate by default ~/.ssh/id_rsa / ~/.ssh/id_rsa.pub

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM