问答详情
源自:2-4 上传代码至github

为什么push不到GitHub上呢?这个error是什么意思呀


error: src refspec main does not match any

error: failed to push some refs to 'https://github.com/sssccciiii/test-demo.git'




http://img1.mukewang.com/618e0d0000015da914681152.jpg

提问者:葡萄葡萄 2021-11-12 14:44

个回答

  • 神空
    2022-10-12 22:03:50

    我也是出现了楼主一样的问题,然后我就放弃github了。现在用gitee使用的很顺心。。。

  • qq_泠漠眼眸眼捔涙_0
    2022-01-16 21:59:32

    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


  • 日行一善_普渡众生
    2021-12-28 17:19:24

    把git push -u origin main修改成

    git push -u origin master