如果我说错了标题,请原谅我 我是git的绝对初学者,我正在学习本教程:https://www.youtube.com/watch?v=SWYqp7iY_Tc。
对于我正在使用MINGW64的软件。
一切都成功了,我创建了一个GitHub存储库,但是一旦我尝试了命令:$ git push -u origin master
,我收到了错误:
ERROR: Repository not found.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
接下来,我搜索了互联网,发现我需要创建一个ssh密钥并将其上传到GitHub。我成功完成了,并确认我已将正确的密钥上传到我的个人资料中。再次尝试后,它仍然无法正常工作。我对可能出错的东西感到茫然。
对于细节,因为我是初学者,这里是我使用的命令以及创建和添加ssh密钥时我经历的过程。
$ ssh-keygen -t rsa -b 4096 -C "myemail@gmail.com" //not my real email btw
//I then entered a passphrase
$ eval $(ssh-agent -s)
$ ssh-add ~/.ssh/id_rsa
//I then proceed to add this to my GitHub profile:
$ clip < ~/.ssh/id_rsa.pub
//I then went to the section called "SSH and GPG keys", gave the new key a title, and copied to clip.
同样,以上是不成功的,我想知道是否有人有其他方法或建议来解决这个问题。 谢谢!
答案 0 :(得分:0)
使用此命令将SSH转换为HTTPS。
$ git remote set-url origin https://github.com/USERNAME/REPOSITORY.git
我现在能够在登录后将本地存储库上传到GitHub。