1. ホーム
  2. ギット

[解決済み】リジェクトされたマスター→マスター(非ファストフォワード)。

2022-04-02 15:52:50

質問

自分のプロジェクト(すべてのファイルを新しいリポジトリに)をプッシュしようとしています。私はステップに従いますが、私が git push -u origin master このエラーが発生します。

! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to '[email protected]:asantoya/projectnewbies.git'
To prevent you from losing history, non-fast-forward updates were rejected
Merge the remote changes (e.g. 'git pull') before pushing again.  See the
'Note about fast-forwards' section of 'git push --help' for details.

このエラーが何度も出て、どうしたらいいのかわかりません。

どうすればいいですか?

エラーメッセージにあるように git pull を試す前に git push . どうやら、あなたのローカルブランチとトラッキングブランチが同期していないようです。

プロジェクトのルールやワークフローによっては git pull --rebase .