但我有一個java應用程序是從heroku創建的。我修改了它並將其與專用的bitbucket存儲庫關聯。
當我使用heroku eclipse插件(提交,然後推向上游)執行推送,或者使用我的本地計算機上的源代碼目錄中的git push heroku master
命令執行推送時,它會更新我的私有存儲庫中的源代碼。
很好,但是當我用heroku run bash --app myapplication
命令查看部署在heroku環境中的代碼時,我發現我的代碼沒有更新。
我的代碼與我的私有存儲庫有很好的關聯,但是heroku並沒有使用它來更新它的源代碼。 任何想法可能是錯的? 謝謝!Heroku推送源代碼到我的存儲庫,但不是平臺heroku
0
A
回答
0
它看起來像你的heroku
遠程實際上是指向BitBucket。以下是我建議:
重命名現有
heroku
遙控器origin
。這是您的「主」遙控器的傳統名稱,但如果您願意,可以將其稱爲bitbucket
或其他東西。git remote rename heroku origin
現在添加一個新的遠程叫
heroku
實際指着Heroku的。git remote add heroku [email protected]:your-repository-name.git
你現在應該有遙控器。如果您運行
git remote -v
,你會看到這樣的內容:heroku [email protected]:your-repository-name.git (fetch) heroku [email protected]:your-repository-name.git (push) origin [email protected]:you/your-repository-name.git (fetch) origin [email protected]:you/your-repository-name.git (push)
您現在應該能夠推到Heroku的與
git push heroku
與git push origin
到到位桶。
相關問題
- 1. 如何將文件推送到git存儲庫但不是Heroku?
- 2. 在推送到heroku後,即使源代碼不是
- 3. 推送我的存儲庫(JAVA應用程序)到heroku失敗
- 4. 公共文件夾不會推送到heroku存儲庫
- 5. 我移動了我的源代碼目錄,不能再推送到Heroku
- 6. 將代碼推送到Heroku時出錯
- 7. 無法將代碼推送到heroku
- 8. Heroku管道推廣 - 拉到存儲庫
- 9. Heroku - 推送到git存儲庫時出現致命錯誤
- 10. 當我推送到heroku時,Active Admin在本地工作,但不在heroku上
- 11. 是否可以在heroku上部署jar而不是推送源代碼?
- 12. Heroku推送 - Git推送到Heroku的錯誤
- 13. 錯誤推代碼的Heroku
- 14. 推送到Heroku的麻煩
- 15. 在heroku上找不到存儲庫
- 16. 「'django_mongodb_engine'不是可用的數據庫後端」當推送到Heroku
- 17. 我無法推送heroku
- 18. 無法推送到Heroku推送拒絕
- 19. 將數據庫推送到heroku:如何使用heroku pg:push
- 20. 從Heroku下載我的Heroku網站的源代碼?
- 21. 將heroku推送到github
- 22. 未能推送到heroku
- 23. production.rb未被推送到heroku
- 24. 無法推送到heroku
- 25. 推送到heroku失敗
- 26. 將mysql推送到heroku
- 27. 超時推送到Heroku
- 28. 推送到Heroku後找不到CSS
- 29. Heroku推送錯誤「檢測到Heroku不支持的sqlite3 gem」。
- 30. 是否可以將index.html推送到heroku?
聽起來好像你的'heroku'遠程實際上是你的BitBucket存儲庫,而不是Heroku。 'git remote -v'的輸出是什麼? – Chris
Git對我來說是新的,所以我認爲你是對的:heroku https://[email protected]/xxx/xxx.git(fetch) heroku https://[email protected]/xxx/xxx.git (推) – manu78