git本地仓库与远程仓库 配置 SSH Key

远程库以GitHub为例

GitHub网址 : https://github.com/

一. 设置本地Git的user.name 和 user.email

$ git config --global user.name "fdwfly"
$ git config --global user.email "[email protected]"

二. 检查是否存在 ssh key

$ ls ~/.ssh/   	
或  
$ ll ~/.ssh/

# 若不存在 ssh key ,就生成一下

$ ssh-keygen -t rsa -C "[email protected]"

三. 查询并获取 ssh key

$ cat ~/.ssh/id_rsa_pub

四. GitHub 添加 SSH Key

登录GitHub网站,点击用户头像,选择setting -> add SSH Key
把上述获取的 ssh key 粘贴上去即可 (title 自定义)

git本地仓库与远程仓库 配置 SSH Key_第1张图片

git本地仓库与远程仓库 配置 SSH Key_第2张图片

五: 检查 是否成功配置 SSH Key

$ ssh -T [email protected]

 

你可能感兴趣的:(Git)