Skip to content

Instantly share code, notes, and snippets.

@ysasaki
Created July 6, 2015 01:59
Show Gist options
  • Save ysasaki/77792056597ec581c33e to your computer and use it in GitHub Desktop.
Save ysasaki/77792056597ec581c33e to your computer and use it in GitHub Desktop.

git gcしてみた

count-objects

% git count-objects -v
count: 6845
size: 36348
in-pack: 37399
packs: 36
size-pack: 166057
prune-packable: 472
garbage: 0
size-garbage: 0

gc

% git gc
Counting objects: 40093, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (17411/17411), done.
Writing objects: 100% (40093/40093), done.
Total 40093 (delta 26083), reused 34619 (delta 21871)
Removing duplicate objects: 100% (256/256), done.

count-objects

% git count-objects -v
count: 146
size: 584
in-pack: 40093
packs: 1
size-pack: 171946
prune-packable: 0
garbage: 0
size-garbage: 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment