error: src refspec main does not match any error: failed to push some refs to gitee.com:zhu-jiwencom/fashion-hive.git
时间: 2023-11-11 21:58:20 浏览: 171
关于gitee push 不上 报错原因
这个错误通常是因为本地仓库没有提交任何更改,导致无法推送到远程仓库。您可以尝试先执行以下命令:
```
git add .
git commit -m "Initial commit"
```
然后再执行推送命令:
```
git push -u origin main
```
如果仍然出现错误,请检查您的本地分支是否与远程分支同名,或者尝试使用以下命令强制推送:
```
git push -f origin main
```
阅读全文