When I try to commit changes to local repo, I have got following message:
fatal: unable to write new_index file
views:
56answers:
2@Kuzmin: I was writing the same thing;)
VonC
2010-09-15 06:03:33
+2
A:
As this thread illustrates, this is usually a disk space issue:
$ git status
fatal: unable to write new_index file
One cause of this that I found was that my file system had run out of space.
Finding large directories with something like the following helped clean up some log files that had run wild :
$ du -h / | grep ^[0-9.]*G
Note: you can also see it for
- a resource issue with msysgit and Egit (Git for Eclipse):
Problem still remained so I ran File Monitor from Sysinternals Suite.
It seems that Eclipse is accessing index file constantly and blocks command line git
- for a classic anti-virus issue:
Yeah, looks like Windows Defender strikes again. I always forget to disable that damn thing. I can't believe how broken it is. Destroys Blu-ray playback at home, breaks Git at work...
VonC
2010-09-15 06:02:59