R(Coursera Course)で2回目のプログラミングを終了しました。
その後、自分のGitHubアカウントのローカルレポをグローバルレポに関連づけてコミットし、push -u origin master
としました。git push -u origin masterが失敗しました
しかし、私は次のエラーました:その後、私は私のgetアカウントでレポを引き出し、マスターへの分岐とチェックアウトをしたが、私は以下のようなメッセージ受信
! [rejected] master -> master (fetch first)
error: failed to push some refs to 'https://github.com/RofaidaG/ProgrammingAssignment2'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
を:
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
をどうすればいいですか?
マスターブランチを引き出すことはできますか? – Prabhakar
もう一度マスターにチェックアウトした後に 'git pull'を実行したことはありますか?原因は上記の失敗したgit pushと同じようです。 – MarkSkayff