ローカル マシンに Facebook アプリケーションがあり、Heroku で作成された別のアプリケーションがあります (Heroku アプリケーションのコードは Heroku によって自動的に作成されました)。Heroku アプリケーション内のコードをローカル マシン上のコードに完全に置き換えたいと考えています。コードがあるマシンのディレクトリで git リポジトリを既に初期化し、URL を で設定しましたgit remote add origin git@heroku.com:my-fb-app.git
。ただし、入力すると次のgit push origin master
ようになります。
To git@heroku.com:my-fb-app.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'git@heroku.com:blooming-cove-5867.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.
明らかに、これは正しいアプローチではありません。これを行うにはどうすればよいですか?