Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我制作了一个应用程序,在工作时我停止将代码推送到heroku,只将其推送到bitbucket。当我尝试将其推送到 heroku 时,它不接受,所以我克隆了我的 heroku 最后一个目录并将粘贴的文件从位存储桶复制到目录到 heroku 克隆目录。之后我才在该目录上工作,现在我无法推送到 bitbucket 有什么办法可以做到这一点。我是 git 新手。.
由于某种原因,“origin”不是您定义的遥控器之一。要添加它,请尝试以下操作:
git remote add origin git@bitbucket.org:<repo name>
然后,您可能希望将 master 设置为跟踪 origin/master:
git branch -u origin/master master