连接Github与本地

Using the SSH protocol, you can connect and authenticate to remote servers and services. With SSH keys, you can connect to GitHub without supplying your username and personal access token at each visit.

配置用户名和邮箱

首先输入下面命令:

1
2
git config --global user.name "你的github用户名"
git config --global user.email "你的github注册邮箱"

用户名和邮箱根据你注册github的信息自行修改。

上传SSH key

生成密钥SSH key

1
ssh-keygen -t rsa -C "你的注册邮箱"

打开github,在头像下面点击settings,再点击SSH and GPG keys,新建一个SSH,名字随便。
cmd中cat ~/.ssh/id_rsa.pub
将输出的内容复制到框中,点击确定保存。
输入ssh -T git@github.com,出现你的用户名,那就成功了。


El mejor tiempo para plantar un árbol fue hace veinte años. El segundo mejor tiempo es AHORA.