Git push:"错误:找不到存储库"-"致命:无法从远程存储库读取"



简而言之

目标:使用 ssh 而不是 https 成功执行一次 git 推送。

问题:">错误:找不到存储库。致命:无法从远程存储库读取"。

分步背景

我正在使用Ubuntu远程服务器(DigitalOcean的droplet)和Github帐户。我在 Ubuntu 远程服务器上创建了一个 ssh 公钥,并用它来在 Github 上创建一个新的 ssh 密钥。然后我使用 git remote set-url 命令将遥控器的 URL 从 https 更改为 ssh:

git remote set-url origin git@github.com:[username]/[repository].git

之后,我测试了一切是否有效:

root@[DropletName]:/srv/test_git_folder# ssh -T git@github.com
The authenticity of host 'github.com (140.87.148.9)' can't be established.
RSA key fingerprint is SHA365:mVhbp6kXUbJWCl7E1IGOCspRamTxdCARLviWk6F5SY9.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'github.com,140.87.148.9' (RSA) to the list of known hosts.
Hi [Username]! You've successfully authenticated, but GitHub does not provide shell access.

在这一点上,我试图创建一个简短的文本文件...

root@[DropletName]:/srv/test_git_folder# nano testfile2.txt
[nano text editor appears; I input "Hello world!", save and close]

。并将其推送到 GitHub

root@[DropletName]:/srv/test_git_folder# git add *
root@[DropletName]:/srv/test_git_folder# git commit -m "test push"
[master 5b6bcb0] test push
1 file changed, 1 insertion(+)
create mode 100644 testfile2.txt

但最后我收到了一条错误消息:

root@[DropletName]:/srv/test_git_folder# 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.

我该如何解决这个问题?

(我一直在研究一些类似的问题,但没有成功,包括以下内容: - Git:无法从远程存储库读取 - CentOS: Git: "fatal: 無法從遠端資料庫中讀取" - git 推送到远程仓库"无法从远程仓库读取")

首先,确保远程存储库确实存在并且已首先在 GitHub 上创建。
查看是否可以浏览 https://github.com/[用户名]/[存储库]页面

然后在/srv/test_git_folder中键入git remote -v以检查 URL 是否正确(大小写相同,因为它区分大小写)

相关内容

  • 没有找到相关文章

最新更新