Good morning,
I have recently rewritten the history of my repository in order to remove a lot of blob files that should have never been there.
Locally my repository went from 700Mb to 45Mb and after a push force I hoped the server repository size were going down as well. Maybe you have to trigger a manual gc as well!
The repository is TheForgottenBelow
Hi @pinturic
I've executed a gc against the repo, it has only reduced from 775MB > 760MB unfortunately.
This is usually due to one of the following 2 causes:
git rev-list --objects --all \
| git cat-file --batch-check='%(objecttype) %(objectname) %(objectsize) %(rest)' \
| awk '/^blob/ {print substr($0,6)}' \
| sort -r --numeric-sort --key=2 \
| numfmt --field=2 --to=iec-i --suffix=B --padding=7 --round=nearest
Hope this helps.
Cheers!
- Ben (Bitbucket Cloud Support)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.