error: src refspec main does not match any
error: failed to push some refs to 'https://github.com/sssccciiii/test-demo.git'
我也是出现了楼主一样的问题,然后我就放弃github了。现在用gitee使用的很顺心。。。
github 将master修改为main 并不以账号密码登录 先生成token
git branch -M main
git remote add origin
git push -u origin main
账号:自己的账号
密码:生成的token
或者
git remote set-url origin https://<your_token>@github.com/<USERNAME>/<REPO>.git
把git push -u origin main修改成
git push -u origin master