繁体   English   中英

GIT 权限被拒绝(公钥) - 致命无法从远程存储库读取

[英]GIT permission denied (publickey) - Fatal could not read from remote repository

我有ssh -T git@github.com命令返回成功验证。
我也有ssh-add -l -E sha256返回 output。

但是git push -u origin main返回

***@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

谁能帮我?

You are adding as a remote an HTTPS URL ( https://github.com/saumyaphilip/mgc_web.git )

这意味着您的 SSH 密钥根本没有使用。

至少尝试切换到 SSH:

cd /path/to/repository
git remote set-url origin git@github.com:saumyaphilip/mgc_web.git

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM