2014-02-22 30 views
0

我按照說明嘗試創建遠程存儲庫,似乎我不能出於某種原因從我的Mac。任何輸入或幫助將不勝感激。下面是我一直使用的終端命令集。有什麼想法嗎?是什麼導致「致命的:存儲庫」https://github.com/bemyhre/my_web.git/'找不到'錯誤

Bens-MacBook-Pro:week7 benmyhre$ mkdir my_web 
Bens-MacBook-Pro:week7 benmyhre$ cd my_web 
Bens-MacBook-Pro:my_web benmyhre$ git init 
Initialized empty Git repository in /Users/benmyhre/Desktop/RubyProjects/week7/my_web/.git/ 
Bens-MacBook-Pro:my_web benmyhre$ touch README 
Bens-MacBook-Pro:my_web benmyhre$ git ad README 
git: 'ad' is not a git command. See 'git --help'. 

Did you mean one of these? 
    add 
    am 
Bens-MacBook-Pro:my_web benmyhre$ git add README 
Bens-MacBook-Pro:my_web benmyhre$ git commit -m 'first commit' 
[master (root-commit) 4e7b51d] first commit 
1 file changed, 0 insertions(+), 0 deletions(-) 
create mode 100644 README 
Bens-MacBook-Pro:my_web benmyhre$ git remote add origin https://github.com/bemyhre/my_web.git 
Bens-MacBook-Pro:my_web benmyhre$ git push origin master 
Username for 'https://github.com': #myusernamewenthere 
Password for 'https://[email protected]': 
remote: Repository not found. 
fatal: repository 'https://github.com/bemyhre/my_web.git/' not found 

回答

相關問題