git commit 反映されない
解決したいこと
git push を行うと下記のように行が追加されていきます。
加えて、リモートリポジトリへのcommitが反映されていません。
現在どのような状況なのか?どうすればcommitが反映されるようになるのか?
回答よろしくお願い致します。
※一度、ローカルリポジトリをmasterからmainに
変更しようと思い、下記と打ち込んでいます。
git branch -m master main
発生している問題・エラー
$ git log --oneline
00ffc49 (HEAD -> main) view commit
cd3dc17 rails routing
e9fc677 today commit
4e73775 users commit
f7df06f (origin/master, master) rails commit
git push origin main した場合
! [rejected] main -> main (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 push origin master した場合
Everything up-to-date
自分で試したこと
git push -u origin main
としてから
Github上で
Settings>Branches>Default branchでmain
を切り替えるなどしました。