1、创建 SSH KEY : ssh-keygen -t rsa -C "youremail@example.com",然后一路回车。然后在 .ssh目录下查看是否有id_rsa和id_rsa.pu两个文件。
id_rsa是私匙,不能示人。
2、登录github,点击头像下拉按键>setting>SSH and GPG keys,填充任意“title"。然后复制 id_rsa.pub内容到 Key。
3、关联远程仓库:git remote add origin git@github.com:jerrygo123/test.git
4、打印中央仓库地址:git remote -v