What's a simple way to find the size of my git repository? And I don't mean du -h on the root directory of my repo. I have a lot of ignored files so that size would be different from my total repo size. I essentially want to know how much data would be transfered upon cloning my repo.

link|improve this question
feedback

3 Answers

up vote 6 down vote accepted

One definitive way:

 git bundle create tmp.bundle --all
 du -sh tmp.bundle

Close (but not exact:)

 git gc
 du -sh .git/

With the latter, you would also be counting:

Plus, you will get

  • hooks
  • config (remotes, push branches, settings (whitespace, merge, aliases, user details etc.)
  • stashes (see Can I fetch a stash from a remote repo into a local branch? also)
  • rerere cache (which can get considerable)
  • reflogs
  • backups (from filter-branch, e.g.) and various other things (intermediate state from rebase, bisect etc.)
link|improve this answer
Thanks! The first behavior more accurately reflected the total clone size but the second was also pretty close. – mschallert Nov 18 '11 at 16:14
feedback

The git command

git-count-objects -v

will give you a good estimate of the git repository's size. Without the -v flag, it only tells you the size of your unpacked files. This command may not be in your $PATH, you may have to track it down (on Ubuntu I found it in /usr/lib/git-core/, for instance).

From the Git man-page:

-v, --verbose

In addition to the number of loose objects and disk space consumed, it reports the number of in-pack objects, number of packs, disk space consumed by those packs, and number of objects that can be removed by running git prune-packed.

Your output will look similar to the following:

count: 1910
size: 19764
in-pack: 41814
packs: 3
size-pack: 1066963
prune-packable: 1
garbage: 0

The line you're looking for is "size-pack". That is the size of all the packed commit objects, or the smallest possible size for the new cloned repository.

link|improve this answer
+1 nice answer. – sehe Nov 18 '11 at 16:26
feedback

Why don't you just clone your repo locally and then check the disk usage on that directory?

link|improve this answer
1  
don't forget to git clone --mirror then; otherwise you'll wrongly not get all branches, and also wrongly count the size of the work tree (which is usually (several times) larger than the repo) – sehe Nov 18 '11 at 16:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.