分类目录归档:GIT

GIT 使用技巧


1. 配置代理

开启代理

git config --global http.proxy $server:$port
git config --global https.proxy $server:$port

关闭代理

git config --global --unset https.proxy
git config --global --unset http.proxy

2. 断点重传

Read more