git push程式碼失敗,鑑權失敗

mars0521發表於2024-10-08
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

相關文章