1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| git config --global user.email "xx@qq.com" git config --global user.name "xx"
git config --list # 查看配置的信息
# 设置低速超时时间为999999秒(几乎不超时) git config --global http.lowSpeedLimit 0 git config --global http.lowSpeedTime 999999
# 设置HTTP缓冲区大小为500MB(默认通常较小) git config --global http.postBuffer 524288000
# 设置压缩级别(0-9,0是不压缩,9是最大压缩) git config --global core.compression 0
# 设置并行下载数量-启用并行下载(同时下载多个对象) git config --global fetch.parallel 10
|