📌  相关文章
📜  git 写入对象慢 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:32.729000             🧑  作者: Mango

代码示例1
git config --global http.postBuffer 524288000

//if you get:  Writing objects:  62% (1023/1650)
//and it doesn't advance at a certain percentage (here it's stuck at 62%)

//This resizes the buffer: 524288000 is 500mb
//1 GB: 1048576000
//2 GB: 2097152000 (max size)