无法推送到Github存储库

时间:2011-10-24 17:53:57

标签: git github

我无法将代码从我的机器推送到github。我已经设置了回购:

git remote add origin git@github.com:hugeeee/demo_app.git

键入命令git push -u origin master时出现此错误:

ssh: Could not resolve hostname github: Name or service not known
fatal: The remote end hung up unexpectedly

有人可以指导我解决问题吗?

1 个答案:

答案 0 :(得分:16)

运行:

git remote set-url origin git@github.com:hugeeee/demo_app.git

确保你真的说“github.com”。您可能在创建遥控器时遗漏了“.com”。