git_proxt_set


title: git_proxt_set
categories: [git]
tags: [git, proxy, config]
date: 2017-08-01 21:23:05
description: 在git中如何通过设置代理,让git走代理,从而实现快速从github拉取分支


set git through proxy:

set gir proxy

git config --global http.proxy socks5://127.0.0.1:1080
git config --global http.proxy http://127.0.0.1:1080
git config --global http.proxy https://127.0.0.1:1080

git config --usage

git config --global [name] [name_value]

Recover git global config:

git config --global --unset [name]

你可能感兴趣的:(git,代理,config)