查看本机ssh公钥,生成公钥
程序员文章站
2022-05-25 11:54:23
...
1.git命令:
git bash下
cd ~/.ssh
cat id_rsa.pub
一步:
cat ~/.ssh/id_rsa.pub
2.Windows10
C:\Users\lenovo\.ssh\id_rsa.pub
3.生成ssh
git bash下
配置git信息
git config --global user.name "你的用户名"
git config --global user.email "你的公司或个人邮箱"
生成ssh
ssh-****** -t rsa -C "你的公司或个人邮箱"
查看ssh
cd ~/.ssh
cat id_rsa.pub
一步:
cat ~/.ssh/id_rsa.pub