When I run the command
git push -u origin master
it returns the following:
error: src refspec master does not match any
error: failed to push some refs to 'https://github.com/cistuff/MaxGames.git'
When I run the command
git push -u origin main
it returns the following:
Everything up-to-date
Branch 'main' set up to track remote branch 'main' from 'origin'.
I tried git push -u origin master and git push -u origin main but I ended up with the errors above. This is my first time doing this so I am very confused.