When doing a large commit with Git over HTTP, sometimes I get “fatal: write error: Broken pipe” and it hangs. The fix is pretty simple, it’s just adding to the buffer:
1 | git config http.postBuffer 104857600 |
When doing a large commit with Git over HTTP, sometimes I get “fatal: write error: Broken pipe” and it hangs. The fix is pretty simple, it’s just adding to the buffer:
1 | git config http.postBuffer 104857600 |