GIT 使用技巧 发表评论 634 views Betteryuan Blog › 技术文章 › 工具类 › 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. 断点重传