2012-12-21 150 views
-6

在我上一篇文章(Can't push to git hub)我說我開始ch。 2在Hartl的Ruby on Rails教程中。我已經掌握了每一件事情。 1工作,並已完成了書中的所有內容。 2.但是,當我嘗試這樣做:仍然無法推送到github

$ git push -u origin master 

我得到的迴應:

ERROR: repository not found 
fatal: could not read from remote repository 
Please make sure you have the correct access rights and that the repository exists. 

從那時起,我已經做了:

ssh -T [email protected] 

的反應是

Hi username! Your have successfully authenticated, etc. 

我也做過:

git remote -v. 

的反應是

origin [email protected]:myusername/demo_app.git (fetch) 
origin [email protected]:myusername/demo_app.git (push) 

這對我來說似乎表明,一切都OK了,但我仍然得到同樣的錯誤消息。

+0

可能重複[無法推送到git集線器](http://stackoverflow.com/questions/13965622/cant-push-to-git-hub) –

回答

2

來自您的push命令的錯誤消息顯示「找不到存儲庫」。這意味着你還沒有在github上創建遠程倉庫。

轉到https://github.com/new並創建一個名爲demo_app的存儲庫。