彻底切换github本地提交默认账号

一、生成并添加第一个ssh key

前往 -> ~/.ssh/文件夹

$ ssh-keygen -t rsa -C "[email protected]"一路下一步,
会在~/.ssh/目录下生成id_rsa和id_rsa.pub两个文件

二、修改github的ssh

用文本编辑器打开id_rsa.pub里的内容,在Github中添加SSH Keys

三、在.ssh/下创建config文件 内容如下:

Host github.com
HostName github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa

Host名字随意,接下来会用到。

四、测试配置是否正确

$ ssh -T [email protected]

五、配置Git全局变量

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

###六、查看Git配置信息
$ git config --list

你可能感兴趣的:(彻底切换github本地提交默认账号)