设置 Git 代理
在使用 GitHub 子模块安装 HUGO 主题时会提示无法连接到仓库,网上搜索后发现原因为未设置 Git 代理。在 CMD 中使用下方命令可开启代理
git config --global http.proxy http://127.0.0.1:port
git config --global https.proxy http://127.0.0.1:port
其中 http://127.0.0.1
为本机地址,不用更改, port
为使用代理的端口号。我这里使用的为 Clash for Windows, http
和 https
对应的端口号分别为 7890
和 7891
再次使用 Git 子模块命令安装主题,一般可正常下载
[...]git submodule add -b main https://github.com/nunocoracao/blowfish.git themes/blowfish安装过程中遇到两个问题:未设置 Git代理 导致子模块下载失败使用 submodule 安装主题无故报错 git submodule add -b main https://github.com/nunocoracao/blowf[...]