2011-08-27 119 views
0

我試圖推動一個項目,GitHub上和我跟隨他們的指示,貼在下面:推到GitHub的

mkdir PyPong # Skipped mkdir and cd steps 
cd PyPong # Git bash path already set 
git init 
touch README 
git add README 
git commit -m 'first commit' 
git remote add origin [email protected]:[username redacted]/PyPong.git 
git push -u origin master # ERROR! 

我已經承諾我的所有文件,創建了我的RSA密鑰的SSH,並配置我的API令牌。然而,我仍然在bash中遇到以下問題:

$ git push -u origin master 
fatal: '[email protected]/[username redacted]/PyPong.git' does not appear to be a git repository 
fatal: The remote end hung up unexpectedly 

我在做什麼錯?

+0

你確定你已經創建GitHub上的倉庫? – lucapette

+0

是的;在我的GitHub主頁上列出了我的倉庫。 – Edwin

回答

3

你的.git/config有什麼作爲原始網址?

的錯誤似乎表明,網址爲[email protected]/user/PyPong.git,而應該是[email protected]:user/PyPong.git

+0

我不知道如何檢查這個。什麼是bash命令? (順便說一下,我認爲從':'到'/'的轉換很腥,但我不知道它是否與我的錯誤有關。) – Edwin

+0

@Edwin運行'git config remote.origin.url '或'vi .git/config'並查看'[remote'origin']' – manojlds

+0

我試着同時運行。 'git config remote.origin.url'不會返回任何內容,而'vi .git/config'返回'ERROR:無法爲「.git/config」交換文件,無法恢復。' – Edwin