Github账号切换,解决Permission deny

Github账号切换,解决Permission deny

  • 原因
    • 解决方法

原因

电脑上保存了另外一个GitHub账号的账户和密码,而你现在链接的是另外一个账户。
出现这个提示

解决方法

1 找到“控制面板”→“用户账户”→“管理你的凭据”→“Windows 凭据”,在“普通凭据”中找到你不想要的github用户凭证.
2 绑定新的用户凭证:
3 保存账户名和邮箱

git config --global user.name "用户名
git config --global user.email "邮箱 "

4 生成SSH,绑定到github

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

你可能感兴趣的:(杂七杂八,github)