アプリケーションからリポジトリにコードを更新しようとしていますが、エラーが表示されます。
どうすれば修正できますか?
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.
このエラーは、Herokuのmaster
ブランチに、ローカルブランチのnotであるコミットが含まれていることを意味します。
Herokuから不足しているコミットをプルして、ローカルコピーにマージすることができます。
git pull heroku master
または、不足しているコミットを気にしない場合は、Push to Herokuを強制できます。これにより、Herokuのリモートリポジトリがローカルコミットで上書きされます。
git Push --force heroku master
あなたが本当にそれらを気にしないことを確認してくださいこれを失うことになるのでこれを行うことによってHerokuから。 Herokuは通常、正規のリポジトリではないため、通常、これは問題になりません。GitHubなどの他の場所はそうです。