目 录CONTENT

文章目录

Git 相关问题

Administrator
2024-07-27 / 0 评论 / 0 点赞 / 44 阅读 / 0 字 / 正在检测是否收录...

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

方法二:设置系统管理

取消设置系统代理会出现此问题

  1. 在系统管理中找到系统代理(直接搜索 系统代理)

git_error_set_porxy_0.jpg

  1. 开启代理服务器,记住端口号

git_error_set_porxy_1.jpg

  1. 设置 Git 本地代理

git config --global http.proxy http://127.0.0.1:10809
  1. 验证是否成功

git config --global -l

3. There is no tracking information for the current branch的错误

# 远程存在分支情况下直接与远程分支合并
git branch --set-upstream-to=origin/远程分支名 本地分支名

0
  1. 支付宝打赏

    qrcode alipay
  2. 微信打赏

    qrcode weixin
Traffmonetizer VPS 回血赚取额外收益

评论区