General information This function performs a number of housekeeping operations on a Git repository, including compressing file revisions and removing unreachable objects. There are three main modes of operation: Automatic. Certain Git commands will run git gc --auto, which will attempt to ...
29
votes
6answers
7k views
How often should you use git-gc?
How often should you use git-gc?
The manual page simply says:
Users are encouraged to run this task on a regular basis within each repository to maintain good disk space utilization and good ...
17
votes
3answers
4k views
How to skip “Loose Object” popup when running 'git gui'
When I run 'git gui' I get a popup that says
This repository currently has approximately 1500 loose objects.
It then suggests compressing the database. I've done this before, and it reduces the ...
9
votes
4answers
1k views
Do I ever need to run git gc on a bare repo?
man git-gc doesn't have an obvious answer in it, and I haven't had any luck with Google either (although I might have just been using the wrong search terms).
I understand that you should ...
8
votes
0answers
46 views
What do the numbers in the “Total” line of git gc/git repack output mean?
When I run git gc or git repack over my Git repository, it outputs a "Total" line once it's done. What do these numbers mean?
A couple of examples from a fairly small repository:
$ git gc
...
Total ...
7
votes
1answer
343 views
Stopping a git gc --aggressive, is that a bad thing?
I am running a git gc --aggressive on a very large repo (apx 100 gb). It's been running since two nights ago, and as of a couple hours, it has been stuck on: "Compressing Objects: 99% (76496/76777)"
...
5
votes
4answers
227 views
Git gc using excessive memory, unable to complete
Final update and fix: The solution here turned out to be a combination of two things: using Windows Git rather than Cygwin Git as Graham Borland suggested, and the Git config settings pack.theads = 1 ...
5
votes
2answers
319 views
How to REALLY delete a git branch (i.e. remove all of its objects/commits)?
I have a git tree like
A---B---C topic
/
D---E---F---G master <--
I would like to remove topic and all objects on it.
I note the SHA ID of ...
4
votes
1answer
319 views
List of all commands that cause git gc --auto
Is there a definitive list of commands anywhere that cause git gc --auto to run? The git-gc(1) man page simply states:
--auto
With this option, git gc checks whether any housekeeping is ...
4
votes
3answers
1k views
how to do `git gc' on git remote repository
As we know, we can run `git gc' periodically to pack objects under .git/objects.
for a remote central git repository, for example, a git bare repository.
after many pushes, there many files under ...
3
votes
3answers
539 views
Is there a way to limit the amount of memory that “git gc” uses?
I'm hosting a git repo on a shared host. My repo necessarily has a couple of very large files in it, and every time I try to run "git gc" on the repo now, my process gets killed by the shared hosting ...
3
votes
3answers
354 views
git gc on machine with quota
Simple question, I'm trying to run git gc on a machine with a quota. Pre-gc, I'm at about 18GB of usage, almost all of which is my cloned git repository. My disk limit is 25GB. During the git gc ...
2
votes
3answers
2k views
Forcing Remote Repo to Compress (GC) with Git
I'm using Git to version a series of binary files. They compress pretty well, but my central repos do not seem to be compressing when I push to them. They're eating up a decent amount of my quota, so ...
0
votes
1answer
271 views
Number of threads for git gc depending on repo size
Can I use single-threaded compression in Git for large repositories and usual parallelized one for small ones? Like "pack.threads=1" if don't easily fit in momory and "pack.threads=4" otherwise.
As I ...