【Gitエラー】「fatal: Out of memory, malloc failed (tried to allocate xxxxxxxxxxx bytes)」の解決方法

原因

ファイル容量の大きいGitリポジトリをチェックアウトしようとしたら起きたので、Gitの解凍処理でメモリが食い尽くされているのが原因らいしい

解決策

解凍処理を小分けにする

~/.gitconfigに以下を追記する

1
2
3
4
5
6
7
8
[core]
packedGitLimit = 128m
packedGitWindowSize = 128m

[pack]
deltaCacheSize = 128m
packSizeLimit = 128m
windowMemory = 128m

【Gitエラー】「fatal: Out of memory, malloc failed (tried to allocate xxxxxxxxxxx bytes)」の解決方法

https://blog.djima.net/2021/02/25/【Gitエラー】「fatal-Out-of-memory-malloc-failed-tried-to-allocate-xxxxxxxxxxx-bytes-」の解決方法/

Author

Daiki Iijima

Posted on

2021-02-25

Updated on

2024-04-17

Licensed under