やったこと
- GitHubのアカウントを作る
- ローカルとリモートをリンクさせる
- ローカルで適当なファイルを作る
- コミットしたあとに
git push origin master
を叩く
エラー内容
To https://github.com/○○○○/○○○○.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'https://github.com/○○○○/○○○○.git'
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.
解決方法
先に以下のコマンドを実行することでリモートの内容をローカルに反映させる
git merge --allow-unrelated-histories origin/master
なぜ起きたか
GitHubで新しいリポジトリを作る時にREADME.mdを同時に作るとリモートとローカルに差分がでる
↓
先にリモートの内容をローカルにマージしてからpushしてね、となる