Skip to content

Instantly share code, notes, and snippets.

@radermacher
Created November 13, 2012 10:10
Show Gist options
  • Save radermacher/4065004 to your computer and use it in GitHub Desktop.
Save radermacher/4065004 to your computer and use it in GitHub Desktop.
GIT: If run into memory issue on server or local, reduce memory usage by
git config core.packedGitWindowSize 16m
git config core.packedGitLimit 64m
git config pack.windowMemory 64m
git config pack.packSizeLimit 64m
git config pack.thread 1
git config pack.deltaCacheSize 1m
# Source: http://uberspace.de/dokuwiki/development:git#ram-nutzung
@Seros
Copy link

Seros commented Jun 6, 2024

Quite old but still valid. Was looking for this when searching for a solution of our Bitbucket DC server using too much memory and this did the trick. Whoever wants to follow the source link try https://web.archive.org/web/20121125102332/http://uberspace.de/dokuwiki/development:git#ram-nutzung

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment