I did see your repository, it contains README.md
. While your local repository does not contain anything.
Which creates conflict with your global repo (A common mistake).
You can perform below steps.
$ git init
$ git remote add origin https://github.com/grobconnolly/meetlete.git
$ git checkout -b main
$ git pull origin main --no-rebase
$ git push origin main
Here pull --no-rebase
will append remote objects to local. And checkout -b
will create a new branch named main (Else git default will generate branch master
).
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…