This happens if you initialized a new github repo with README
and/or LICENSE
file
git remote add origin [//your github url]
//pull those changes
git pull origin main
// or optionally, 'git pull origin main --allow-unrelated-histories' if you have initialized repo in github and also committed locally
//now, push your
…