rails学習中につき、よくやってしまうので備忘録として残しておきます。
私と同じような初学者の方の参考になれば幸いです。
% git push -u origin main
を実行したときにこのようなエラーが出たら
error: src refspec main does not match any
error: failed to push some refs to 'https://github.com/[githubアカウント名]/[githubリポジトリ名].git'
mainをmasterに変えて
% git push -u origin master
を実行すればよい!