Git环境
原创小于 1 分钟
Git环境安装教程
Download
Git官网:https://www.git-scm.com
介绍
提示
安装位置选择默认
Git安装选择组件介绍
重要
其余都选择默认即可
Git介绍
代理设置
# 设置代理
git config --global http.proxy http://127.0.0.1:7890
git config --global http.proxy https://127.0.0.1:7890
# 查看代理
git config --global --get http.proxy
git config --global --get https.proxy
# 取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy