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 v
git will try to contact the remote repo you just declared in the previous line of the GitHub tutorial:
git remote add origin git@github.com:username/Hello-World.git
git push -u origin master
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:
git remote -v
gives me:
origin git@github.com:username/Helloworld.git (fetch)
origin git@github.com:username/Helloworld.git (push)
Which means he/she combined a double whammy:
world
instead of World
)Helloworld
insteadd of Hello-World
)