我正在尝试将应用程序中的代码更新到我的存储库,并显示错误。
我该如何解决?
C:\Sites\ecozap>git push heroku master
Enter passphrase for key '/c/Users/Diseño2/.ssh/id_rsa':
Fetching repository, done.
To git@heroku.com:ecozap.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'git@heroku.com:ecozap.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Merge the remote changes (e.g. 'git pull')
hint: before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
答案 0 :(得分:56)
此错误表示Heroku上的master
分支包含本地分支中不的提交。
您可以从Heroku中提取缺少的提交并将它们合并到您的本地副本中:
git pull heroku master
或者,如果你不关心丢失的提交,你可以强制推送到Heroku。这将使用您的本地提交覆盖Heroku上的远程仓库。
git push --force heroku master
通过这样做,确保你真的不关心他们因为你将失去他们来自Heroku。通常情况下这并不重要,因为Heroku通常不是规范的回购,而是像GitHub那样的其他地方。