error: src refspec test1 does not match any error: failed to push some refs to 'gitlab.com:welsongroup/gittest.git'
时间: 2024-01-09 12:20:00 浏览: 116
Github—failed to push some refs to ‘https://github.com/***/git_project.git’解决办法
5星 · 资源好评率100%
这个错误通常是因为你尝试推送一个不存在的分支或者远程仓库中没有该分支。你可以先使用git branch命令查看本地分支,然后使用git push <远程仓库名> <本地分支名>:<远程分支名>命令将本地分支推送到远程仓库。如果远程分支不存在,Git会自动创建一个同名的分支。如果你只是想删除远程分支,可以使用git push <远程仓库名> :<远程分支名>命令。
阅读全文