Git 错误:src refspec main does not match any

默认分类 · 2024-06-12 · 107 人浏览

在执行 git push -u origin main:main 时出现了以下错误
git push -u origin main:main
error: src refspec main does not match any
error: failed to push some refs to 'https://github.com/yhy0816/networkDiskServer.git'

  • 原因
    仓库刚刚创建,还没有提交过,此时main分支还没有真正创建, 导致 push 的时候找不到本地分支
  • 解决
    提交一次,再次push

    git add .
    git commit -m "..."
    git push -u origin mian
Theme Jasmine by Kent Liao