Heroku+BItbucket 部署:更新被拒绝,因为当前分支的尖端在提示后面:它的远程对应项



我现在正在开发一个网站。我使用 heroku 来运行我的服务器,并使用 bitbucket 作为版本控制工具。我设置了一个管道,直接从 bitbucket 部署到 heroku。但是我不断收到这样的错误:

+ git push https://heroku:$HEROKU_API_KEY@git.heroku.com/$HEROKU_APP_NAME.git HEAD

To https://heroku:57eb7889-7395-4a7e-bd95-1312a40b30d1@git.heroku.com/hidden-ocean-90048.git ! [rejected] HEAD -> master (non-fast-forward) error: failed to push some refs to 'https://heroku:57eb7889-7395-4a7e-bd95-1312a40b30d1@git.heroku.com/hidden-ocean-90048.git' hint: Updates were rejected because the tip of your current branch is behind hint: its remote counterpart. Integrate the remote changes (e.g. hint: 'git pull ...') before pushing again. hint: See the 'Note about fast-forwards' in 'git push --help' for details.

我尝试了 git pull 和 git pull -f,但它不起作用。请帮助我。

你可以像下面这样用 -f 推送:

git push -f https://heroku:$HEROKU_API_KEY@git.heroku.com/$HEROKU_APP_NAME.git HEAD

相关内容

  • 没有找到相关文章

最新更新