The size still appears as greater than 4GB despite I reduced it to around 2.5GB.
Hi Apoka,
I can see your personal repository is now 3.3GB, I executed a git gc and it did not reduce the size any further.
I would suggest executing the following command to find a list of your largest files:
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
Once you have those largest files, you can either convert these to LFS or remove them from the repo completely using the BFG Tool:
Cheers!
- Ben (Bitbucket Cloud Support)
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.