git push代码失败,鉴权失败
github 无法push 代码 1、确保设置了用户名和邮箱 git config --global user.name "mars" git config --global user.email "mars3603@163.com"
2、修改 .git/config 中的url,将https的方式修改为 ssh
https方式:
url = https://github.com/Mars3603/grpc.git
ssh方式:
url = git@github.com:Mars3603/grpc.git
直接从github code的地方复制即可,如图(1)所示。
3、生成ssh证书: ssh-keygen -t ed25519 -C "mars3603@163.com"
4、让ssh-agent 在后台运行:eval "$(ssh-agent -s)"
5、添加sshkey
ssh-add ~/.ssh/id_ed25519
cat ~/.ssh/id_ed25519.pub 拷贝秘钥到GitHub的setting中新增一个sshkey。
6、测试与 GitHub SSH 的连接
ssh -T git@github.com
参考链接:https://zhuanlan.zhihu.com/p/589003121#:~:text=%E8%A7%A3%E5%86%B3github
图1