Jason's Blog

November 24, 2024

Git configuration

documentation0.4 min to read

Git上传很慢,尝试使用镜像

设置镜像

git config --global url."https://github.com"insteadOf "https://githubfast.com"

##查看所有的git配置

git config --list

回退镜像修改

#记得加上--global,不然只会对单次指令生效
git config --global --unset url."https://github.com"insteadOf

##记得设置网络代理

vim ~/.bashrc
export https_proxy="http://127.0.0.1:7890"
export https_proxy="http://127.0.0.1:7890"
source ~/.bashrc