I have a fairly large repository with large files in it. I was working on my local branch for a few days and decided to push today. Unfortunately, "git status" returns an out of memory error. I tried changing a few memory allocation sizes in the config files without luck. What am I doing wrong ? Something I can do ?
Asked
Active
Viewed 274 times
1 Answers
0
Just add part by part when you push.
Like so :
Part one
git add folder-one/*
git commit -m 'Message'
git push
Part two
git add folder-two/*
git commit -m 'Message'
git push

Diki Ananta
- 630
- 8
- 16
-
This worked ! Somehow.. Still don't know why git status was failing but thanks a lot for the fix ! – Guiboune St-Martin Apr 17 '16 at 19:05