Hi
Please run garbage collection on our repository (sa********23)
Could you execute it at 00:00 GMT?
I'm opening this request because since I can't create a support case for them to execute it.
Thanks, best regards
Hi Héctor,
I have executed a gc and this has reduced the repo size down to 535mb.
I would suggest executing the following command to identify large files in your repository and then either remove these or convert these to GIT LFS to store them outside of the repository:
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
The reason for this is that any large binary files in your repository will have these files stored in full with each subsequent commit and can quickly inflate repository size.
Please let me know if further assistance is required.
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.