1. ホーム
  2. github

[解決済み】GitHub - エラー: '[email protected]:myrepo.git' へのいくつかの参考文献のプッシュに失敗しました。

2022-01-30 03:57:53

質問

以下のエラーが発生します。 どうすれば解決できますか? git add . git commit -m 't' git push origin 開発

To [email protected]:myrepo.git
 ! [rejected]        development -> development (non-fast-forward)
error: failed to push some refs to '[email protected]:myrepo.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 origin development

development は、プルしたいブランチを指します。 もし master と入力すると、このようになります。

git pull origin master