git 用命令生成ssh key
2022-05-08 本文已影响0人
blue_angel
生成ssh
ssh-keygen -t rsa -C "youremail@example.com"
配置名称和邮箱
git config --global user.name "Your Name"
git config --global user.email you@example.com
生成ssh
ssh-keygen -t rsa -C "youremail@example.com"
配置名称和邮箱
git config --global user.name "Your Name"
git config --global user.email you@example.com