-
-
Save guotao/366e9bf0f4f0f9f6e8acc6e5a133c4cb to your computer and use it in GitHub Desktop.
常用命令
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Step 1: set git through socks5 proxy: | |
```git config --global http.proxy socks5://127.0.0.1:1080``` | |
Step 2: go get via socks5 proxy: | |
```http_proxy=socks5://127.0.0.1:1080 go get github.com/mattn/go-sqlite3``` | |
Recover git global config: | |
```git config --global --unset http.proxy``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Step 1: set git through socks5 proxy:
git config --global http.proxy socks5://127.0.0.1:1080
Step 2: go get via socks5 proxy:
http_proxy=socks5://127.0.0.1:1080 go get github.com/mattn/go-sqlite3
Recover git global config:
git config --global --unset http.proxy