[git-users] Re: How to disable or fix Auto packing with git remote repository

2013-07-18 Thread Marcin Fiedziukiewicz
It is all on linux, remote and local repos are both on linux. Yes I woudl like to fisrt fix this and make it work. Also I have lot of tmp_pack_* files in ../objects/pack dir And they are about 80% of space of whole remote repo, what to do with tem is it safe to delete them all ? W dniu

[git-users] where is stored the staging area(index) on our machines

2013-07-18 Thread Chemsi Mehdi
Dear Git users, I wonder where is stored that staging area on our machines? Is it in /tmp? Many thanks in advance. Mehditch -- You received this message because you are subscribed to the Google Groups Git for human beings group. To unsubscribe from this group and stop receiving emails

Re: [git-users] where is stored the staging area(index) on our machines

2013-07-18 Thread John McKown
The staging area is also called the git index. This is probably better than I am at explaining: http://stackoverflow.com/questions/4084921/what-does-the-git-index-exactly-contain but basically the index is in the .git/index directory. Normally this is in the working directory of the project. But

Re: [git-users] where is stored the staging area(index) on our machines

2013-07-18 Thread Konstantin Khomoutov
On Thu, 18 Jul 2013 10:44:05 -0500 John McKown john.archie.mck...@gmail.com wrote: It should be noted that the index file has a complicated not-human-readable binary format, and is not for direct intervention by the user. It should be treated as a completely opaque data and manipulated by the

Re: [git-users] where is stored the staging area(index) on our machines

2013-07-18 Thread Dale R. Worley
From: John McKown john.archie.mck...@gmail.com The staging area is also called the git index. This is probably better than I am at explaining: http://stackoverflow.com/questions/4084921/what-does-the-git-index-exactly-contain but basically the index is in the .git/index directory. The

Re: [git-users] Git is consuming very much RAM

2013-07-18 Thread Philip Oakley
Iron4nchen, Have you tried the bigFileThreshold config value which affects how the pack / delta compression works (by ignoring such big files thus relieving memory pressure), plus a bit of googling may help. I think there are other similar config values related to the rest of the packing

Re: [git-users] where is stored the staging area(index) on our machines

2013-07-18 Thread Dale R. Worley
From: Philip Oakley philipoak...@iee.org Sounds like the 'git gc' needs an option to deliberately prune specific files and/or large objects for such a case. Maybe something to discuss on the main Git list - no doubt some discussion as to what the command format would be and why it whould