15

我无法通过这个,已经多次重新制作存储库,制作了 ssh 密钥

--------------
demo_app <username>$ git remote add origin git@github.com:<username>/demo_app.git

fatal: remote origin already exists.

$ git push -u origin master
---
ssh: Could not resolve hostname git: nodename nor servname provided, or not known
---
fatal: Could not read from remote repository.
---
Please make sure you have the correct access rights
---
and the repository exists.
----------
---------

Checked ssh keys

---

$ ssh -T git@github.com

Hi <username>! You've successfully authenticated, but GitHub does not provide shell access.

---

仍然收到相同的消息。

4

3 回答 3

16

尝试使用以下命令更改现有遥控器,而不是添加新遥控器:

git remote set-url origin git@github.com:<username>/demo_app.git

编辑:所以,这里有一些命令可以让它在不丢失代码的情况下工作。

  1. rm -rf .git
  2. git init .
  3. git remote add origin git@github.com:<username>/demo_app.git
  4. git commit --allow-empty -m 'First commit'
  5. git push origin master
于 2013-05-14T16:36:58.040 回答
6

如果您因为使用代理而来到这里

尝试:

ssh -T -p 443 git@ssh.github.com

如果可行,那么您可以将设置添加~/.ssh/config到始终通过以下方式连接443

Host github.com
  Hostname ssh.github.com
  Port 443 

更多信息: https ://help.github.com/articles/using-ssh-over-the-https-port/

于 2015-06-24T10:10:27.000 回答
0

要回答新错误:“错误:src refspec master 不匹配任何内容。错误:未能将一些参考推送到 'git@github.com:/demo_app0.git'

我发现这篇文章真的很有帮助:src refspec master does not match any when push commits in git

本质上,尝试添加您的文件并再次提交。

git commit -m 'initial commit' git push origin master

这对我有用!

于 2014-12-11T20:44:39.597 回答