修改git缓存

默认git的http post缓存为1MB,使用命令将git的缓存设为500MB

1
2
3
4
5
# 设置缓存为500MB
git config --global http.postBuffer 524288000

# 查看当前缓存
git config --global http.postBuffer