1.创建SSH Key:

​ 在用户主目录(C:\Users\Administrator)下,看看有没有.ssh文件,如果有,再看文件下有没有id_rsa和id_rsa.pub这两个文件,如果已经有了,可直接到下一步。如果没有,打开Git Bash,输入命令,创建SSH Key

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

image-20240130151746288

2.添加SSH Key:

​ 接下来到GitHub上,打开“Account settings”–“SSH Keys”页面,然后点击“Add SSH Key”,填上Title(随意写),在Key文本框里粘贴 id_rsa.pub文件里的全部内容。

image-20240130152014787

image-20240130152102088

3.登录:

​ git bash里输入下面的命令登陆

1
ssh -T [email protected]

image-20240130152242855

4.必要配置:

​ git commit 命令会记录提交者的信息,所以使用git前必须先添加两条信息

1
2
git config --global user.name "你的GitHub登陆名"
git config --global user.email "你的GitHub注册邮箱"

image-20240130152547523