我正在關注instructions given here以創建Git存儲庫。一切都很順利,直到最後一行:Git推送錯誤:「origin似乎不是git存儲庫」
$ git push -u origin master
fatal: 'origin' does not appear to be a git repository
fatal: The remote end hung up unexpectedly
我使用Git版本1.7.11.3在OS X 10.6.8
$ git remote -v
返回任何內容的
配置文件repository:
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
我h廣告使用sudo visudo命令,打開sudoers文件,並添加以下代碼行(在#用戶特權規範):
git ALL=(ALL) ALL.
現在,如果我做的:
$ git remote add origin /Volumes/500GB/git-repository/myproject.git
它回來,並沒有錯誤,但我沒有看到任何代碼庫 (其具有上述目錄,如樹枝,鉤,...)
如果我做的:
$ git push -u origin master
fatal: 'origin' does not appear to be a git repository
fatal: The remote end hung up unexpectedly
$ git remote -v
origin /Volumes/500GB/git-repository/myproject.git (fetch)
origin /Volumes/500GB/git-repository/myproject.git (push)
很常見犯錯。看看這個線程的幫助:http://stackoverflow.com/questions/10068172/git-push-origin-master-does-not-work – tymeJV 2013-03-15 16:44:00
命令「git remote -v」的輸出是什麼? – brimble2010 2013-03-15 16:46:35
您的說明鏈接已刪除,您是否記得它是什麼? – 2014-06-27 13:26:58