1. 提交到分支代码报错 error: src refspec release-V1.52.0 matches more than one
检查是否存在和分支一样的Tag(存在删除即可)
2. atal: unable to access ‘https://github.com/.../.git‘: Recv failure Connection was rese
方法一: 可以尝试取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
方法二:设置系统管理
取消设置系统代理会出现此问题
在系统管理中找到系统代理(直接搜索 系统代理)
开启代理服务器,记住端口号
设置 Git 本地代理
git config --global http.proxy http://127.0.0.1:10809
验证是否成功
git config --global -l
3. There is no tracking information for the current branch的错误
# 远程存在分支情况下直接与远程分支合并
git branch --set-upstream-to=origin/远程分支名 本地分支名
评论区