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.
|
| ||||
|
feedback
|
|
One definitive way:
Close (but not exact:)
With the latter, you would also be counting: Plus, you will get
| |||
feedback
|
|
The git command
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:
Your output will look similar to the following:
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. | |||
|
feedback
|
|
Why don't you just clone your repo locally and then check the disk usage on that directory? | |||||
feedback
|