I’m kinda new to GitHub, and I just created my account and set it up, etc. I followed the steps very carefully on http://help.github.com/create-a-repo/ but then when I do the very last command ($ git push -u origin master) it says:
ERROR: Repository not found.
fatal: The remote end hung up unexpectedly
I have made the Repository, and it matches the name, but I still can’t seem to get it to work. Any suggestions?
git will try to contact the remote repo you just declared in the previous line of the GitHub tutorial:
As illustrated in:
your error message is likely the result of a:
git remote add origin git@github.com:username/**h**ello-**w**orld.git)git remote add origin git@github.com:username/HelloWorld.git, forgot the ‘-‘).The OP user1302394 confirms, in the comments:
Which means he/she combined a double whammy:
worldinstead ofWorld)Helloworldinsteadd ofHello-World)