MacOS配置GitHub SSH-key

mac和linux配置方法基本类似

打开终端连接到账户

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

创建ssh-key

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

一路enter选择默认项,创建完成

查看ssh-key

此时如果使用sudo open ~/.ssh/id_rsa.pub,会报错No application knows how to open URL file:///Users/ge/.ssh/id_rsa.pub

所以先进入ssh目录,再用more命令打开,复制ssh内容:

cd ~/.ssh/
more id_rsa.pub

New SSH key

在Settings-SSH and GPG keys里new一个SSH key,粘贴ssh并命名

MacOS配置GitHub SSH-key_第1张图片

好耶完成啦


后续:git clone后一直报错 fatal: Authentication failed,用户名和密码并没有错,发现是 github 的新功能 token

参考这篇博客配置 https://shliang.blog.csdn.net/article/details/119698015

你可能感兴趣的:(github,macos,ssh)