0

I'm using msysGit on windows7 in a 32bit environment. I'm really new to git so I don't know what else I would need to explain here to help. One thing I can tell you is this repo is a git clone from my svn repo

enter image description here

Doug Chamberlain
  • 11,192
  • 9
  • 51
  • 91

3 Answers3

1

What version of Git are you using? Looks like you may have uncovered an issue prevalent in msysgit for repositories > 2 GB.

Found this in the msysgit issue tracker.. http://code.google.com/p/msysgit/issues/detail?id=194

Also, found some helpful information in.. Managing large binary files with git

Suggestions were to try using git-submodule for larger binary files. I recommend using this strategy if at all possible.

Community
  • 1
  • 1
NickSuperb
  • 1,174
  • 1
  • 8
  • 28
1

Looks like you are experiencing the same issue as: Repack of Git repository fails

They suggest running:

git config pack.windowMemory 10m
git config pack.packSizeLimit 20m
Community
  • 1
  • 1
kthompson
  • 803
  • 6
  • 16
0

Your video is almost certainly (lossy) compressed - then there is no way in saving more than say 5%. You should delete it from your repo and use an smb/ftp/whatever share instead. see: How to permanently delete a file stored in GIT?

(for text like files: git compresses old files itself when necessary)

Community
  • 1
  • 1
mbx
  • 6,292
  • 6
  • 58
  • 91