I'm trying to follow along Michael Hartl's Rails tutorial http://ruby.railstutorial.org/chapters/beginning#fnref:1.16 but I've run across an error. I signed up on Github and issued a new SSH key and made a new repository. But when I try to push my repository up to Github I get the following error:
ERROR: Repository not found.
fatal: The remote end hung up unexpectedly
Any ideas?
Hey sorry I forgot to add some of the commands I put into the terminal. Here is what I entered:
Parkers-MacBook-Pro:.ssh ppreyer$ git remote add origin git@github.com:ppreyer/first_app.git
Parkers-MacBook-Pro:.ssh ppreyer$ git push -u origin master
ERROR: Repository not found.
fatal: The remote end hung up unexpectedly – ppreyer 6 mins ago
And here is what git remote -v shows:
Parkers-MacBook-Pro:.ssh ppreyer$ git remote -v
github git@github.com:ppreyer/first_app.git (fetch)
github git@github.com:ppreyer/first_app.git (push)
origin git@github.com:ppreyer/first_app.git (fetch)
origin git@github.com:ppreyer/first_app.git (push)
git remote -vshow? Show us the exact commands you type and the exact output that is produced. – larsks Jun 5 '12 at 21:13ERROR: Repository not found" error comes from github. – larsks Jun 5 '12 at 21:33