1. ホーム
  2. ギット

undefinedgit push エラーの解決法 ! [拒否] master -> master (フェッチファースト)

2022-02-08 09:29:24

1. オーナーはいつものように楽しくコードを書き終え、gitに同期する準備が整いました。

git add .

git commit -m "update"。

git push

ドキュメントを見ると、ローカルとリモートのコードリポジトリが同期していないことが原因であることがわかりました。

2. エラーメッセージ

 ! [rejected] master -> master (fetch first)
error: failed to push some refs to 'https://gitee.com/momojian/gophish.git'
hint: Updates were rejected because the remote contains work that you do
This is usually caused by another repository pushing
You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again. before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

3.ワークアラウンド

ローカルリポジトリを同期させる。

$ git pull --rebase https://github.com/XXX.git

最新のコードをアップロードしてください。

git push -u origin master