还是不行,配置如下: [url "https://mirrors.ustc.edu.cn/git-for-windows/"] insteadOf = https://github.com/git-for-windows/ 运行结果如下: $ git-update-git-for-windows Git for Windows 2.40.0.windows.1 (64-bit) Update 2.41.0.windows.3 is available Download and install Git for Windows v2.41.0.windows.3 (killing one Git Bash) [N/y]? y curl: (56) Recv failure: Connection was aborted # # # # 还有其它经过验证的镜像源吗?
时间: 2024-04-18 22:32:24 浏览: 190
解决fatal:remote error:You can't push to git://github.com/username/*.git问题的办法
如果使用了`https://mirrors.ustc.edu.cn/git-for-windows/`镜像源仍然无法加速升级过程,你可以尝试使用其他经过验证的镜像源。以下是一些可用的镜像源:
1. 清华大学镜像源:https://mirrors.tuna.tsinghua.edu.cn/git-for-windows/
2. 中科大镜像源:https://mirrors.ustc.edu.cn/git-for-windows/
3. 阿里云镜像源:https://mirrors.aliyun.com/git-for-windows/
你可以按照之前的方法,在Git Bash中执行以下命令来更换更新源为其他镜像源之一:
```
git config --global url."https://镜像源地址/".insteadOf https://github.com/git-for-windows/
```
将 `镜像源地址` 替换为你选择的镜像源地址。
然后再次尝试运行升级命令:
```
git-update-git-for-windows
```
希望通过更换其他经过验证的镜像源能够加速升级过程。如果仍然遇到问题,请随时向我提问。
阅读全文