Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Have run into a problem with repository and tried almost every possible config setting found out there eg. pack.WindowMemory etc etc

I believe someone has checked in a large file to remote repository and now each time I try and pull or push to it, GIT tries to pack it and runs out of memory:

Auto packing the repository for optimum performance. You may also
run "git gc" manually. See "git help gc" for more information.
Counting objects: 6279, done.
Compressing objects: 100% (6147/6147), done.
fatal: Out of memory, malloc failed (tried to allocate 1549040327 bytes)
error: failed to run repack

Have tried git gc & git repack with various options but keeps returning same error.

Almost given up and about to just create a new repo but thought I'd ask around first :)

share|improve this question
Maybe related. Have you managed to solve yours, tho? – Cawas Aug 17 '12 at 17:51
No luck as yet, haven't given up basically :( – timothyclifford Aug 18 '12 at 3:05
In our case, we solved it with my link on a 7 gb repo. My suggestion, if you can't go with GIT, is trying Hg or Perforce. – Cawas Aug 19 '12 at 15:40
I think it's a bug in MsGit rather than an issue with Git itself. Don't think it warrants moving away from Git altogether either, especially not to Mercurial! – timothyclifford Aug 20 '12 at 2:08
if so, can't u get an ubuntu pen drive just to try it? – Cawas Aug 20 '12 at 13:35
show 1 more comment

2 Answers

I found a solution Here that worked for me.

In .git/config file (client and/or server) I added the following:

[core]
  packedGitLimit = 128m
  packedGitWindowSize = 128m

[pack]
  deltaCacheSize = 128m
  packSizeLimit = 128m
  windowMemory = 128m
share|improve this answer
Interesting settings. +1 – VonC Oct 10 '12 at 5:57
will give it a try and let you know thank you :) – timothyclifford Oct 12 '12 at 23:56

For reference (you might already seen it), the msysgit case dealing with that issue is the ticket 292.

It suggests several workarounds:

Maybe a simpler workaround would be to somehow reset the history before that large file commit, and redo the other commits from there.

share|improve this answer
Unfortunately already tried most of these without any luck, thank you though +1ed – timothyclifford May 7 '12 at 1:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.