時未找到我的版本庫GitHub上所謂的「消息」,並與同名的本地倉庫。我試圖將文件從我的本地回購推送到遠程的,但得到這個錯誤:庫推到GitHub的遠程
ERROR: Repository not found.
fatal: The remote end hung up unexpectedly.
我想這是一個身份驗證問題。當我跑
ssh -T [email protected]
我確實收到一條消息,指出我的密鑰不起作用。所以我將我的〜/ .ssh/github_rsa.pub添加到我在GitHub上的帳戶中的SSH密鑰(刪除了那裏已有的密鑰)並再次運行該命令。這一次,我收到一條消息說 -
Hi septerr! You've successfully authenticated, but GitHub does not provide shell access.
從我看到這似乎是預期的消息。所以,我再次嘗試推動。但收到同樣的錯誤。未找到存儲庫。
Swapnas-MacBook-Pro:messages sony$ git remote -v show
origin [email protected]:seterr/messages.git (fetch)
origin [email protected]:seterr/messages.git (push)
Swapnas-MacBook-Pro:messages sony$ git push -u origin master
ERROR: Repository not found.
fatal: The remote end hung up unexpectedly
當我看着我的回購在GitHub上我看到:
Existing Git Repo?
cd existing_git_repo
git remote add origin [email protected]:septerr/messages.git
git push -u origin master
出了什麼問題?
「明智的打字錯誤」。哈哈! +1 – nulltoken 2012-04-17 07:31:51
*砸我的頭*謝謝你們! – septerr 2012-04-18 05:28:36
我遇到了一個問題,由於GitHub用戶名的更改,我需要更改我的回購地址。下面是它的代碼:'git remote set-url origin [email protected]:username/reponame.git' - 這將使用GitHub username用戶名將遠程名字設置爲origin。 – Nick 2012-05-14 19:50:27