我正在尝试将本地存在的存储库克隆到 github。他们建议这样做:
$ git remote add origin git@github.com:Retr0MrWave/MathTiles.git
$ git push -u origin master
但是当我尝试这样做时会弹出一个错误(在第二个命令之后(:
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
有没有办法解决这个问题?
在我看来,您的 GitHub 凭据配置不正确。是否已按照本指南为命令行创建个人访问令牌?
尝试验证远程存储库
$ git remote -v
在推送现有存储库之前。