GitClone报错问题解决
问题描述
执行命令如下
1 | git clone git://github.com/jiangmiao/auto-pairs.git ~/.vim/bundle/auto-pairs |
详细报错如下
1 | fatal: unable to connect to github.com: |
发现这是因为使用了git://**
导致的错误,更深的原因并不清楚,这里发现只要改用https
就可以解决问题。
问题解决
执行以下代码
1 | git config --global url.https://github.com/.insteadOf git://github.com/ |
这些命令将向**.gitconfig**的配置文件下写入替代git://
为https://
的规则。
同理也可以直接向配置文件写入对应的规则。
- Title: GitClone报错问题解决
- Author: HarderHeng
- Created at : 2024-10-11 02:34:10
- Updated at : 2024-10-11 02:40:16
- Link: https://harderheng.life/2024/10/11/GitClone报错问题解决/
- License: This work is licensed under CC BY-NC-SA 4.0.
Comments