2017-10-08 42 views
0

我正在使用雲9 IDE並嘗試將sample_app推送到bitbucket,以遵循Michael Hartl的教程(第3章3.1節https://www.railstutorial.org/book/static_pages)。當我鍵入以下命令到雲9 IDE:由於我們將使用在整本書中,這家示例應用程序爲什麼我的應用不推向bitbucket? (Michael Hartl的教程第3章第3.1節)

, 這是一個好主意到位桶,以創建一個新的資料庫,並將它推 起來:

$ git的遠程添加原產[email protected]:/sample_app.git $ 混帳推-u起源--all#推回購及其對 首次

我裁判得到以下錯誤

fatal: remote origin already exists. 

(注意:我已將用戶名更改爲我的用戶名)。

由於我得到了錯誤,我嘗試了幾種解決方案,包括從書中以前的練習中的bitbucket中刪除所有內容。到目前爲止,我已經遵循了對該信的指示,儘管我不小心關閉了雲9上命令行中的一些選項卡,我不知道這是否有所作爲。我也注意到,似乎沒有在git上創建任何東西,即使我做了git init,git add -A和git commit。我錯過了什麼。非常感謝幫助,所以我可以繼續前進。請讓我知道是否有任何文件我應該添加到這篇文章的編輯。謝謝。

+0

[遠程原點可能已經存在'git push'到一個新的存儲庫](https://stackoverflow.com/questions/1221840/remote-origin-already-exists-on-git-push-to-一個新的存儲庫) – phd

回答

0

致命:遠程原點已經存在。

您試圖添加的遠程已存在。運行git remote -v並檢查它給你的輸出,如果存在,則跳過第一個命令並通過第二個命令來推送。

+0

結果git remote -v如下:heroku https://git.heroku.com/still-beyond-10331.git(取) heroku https://git.heroku.com/still -beyond-10331.git(push) origin [email protected]:owen358/sample_app.git(fetch) origin [email protected]:owen358/sample_app.git(push) – Owen

+1

還有,你的'origin'是' [email protected]:owen358/sample_app.git',是否與你想添加的一樣?如果是這樣,只需使用'git push'。 –

相關問題