Mac系统下查看和生成SSH Key


一、打开vim(terminal.app)查看本地是否存在SSH-Key

        ls -al ~/.ssh
二、如果没有,生成新的SSH Key

         ssh-keygen -t rsa -C"you_email"
三、生成并添加SSH Key

         ssh-add ~/.ssh/id_rsa
四、查看SSH Key

         cat /Users/xxx/.ssh/id_rsa.pub

完结!

你可能感兴趣的:(Mac系统下查看和生成SSH Key)