I am trying to update the code from my application to my repository and an error appears.
How can I fix it?
C:\Sites\ecozap>git push heroku master Enter passphrase for key '/c/Users/Diseño2/.ssh/id_rsa': Fetching repository, done. To [email protected]:ecozap.git ! [rejected] master -> master (non-fast-forward) error: failed to push some refs to '[email protected]: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.
To deploy your app to Heroku, use the git push command to push the code from your local repository's main branch to your heroku remote. For example: $ git push heroku main Initializing repository, done.
This error means that the master
branch on Heroku contains commits that are not in your local branch.
You can either pull the missing commits from Heroku and merge them into your local copy:
git pull heroku master
Or, if you don't care about the missing commits you can force push to Heroku. This will overwrite the remote repo on Heroku with your local commits.
git push --force heroku master
Make sure you really don't care about them as you will lose them from Heroku by doing this. Normally this doesn't matter as Heroku is not normally the canonical repo, somewhere else such as GitHub is.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With