Hi,
repo cuOnboard
We mistakenly had node_modules folder added to this repo and folder is large. I added the folder to .gitignore to prevent further or new branches adding this to the repo.
We purged the node_modules from all history by doing the following:
git clone --mirror git@bitbucket.org:your-workspace/your-repo.git
cd your-repo.git
bfg --delete-folders node_modules
git reflog expire --expire=now --all
git gc --prune=now --aggressive
git push --force
We did this over 30 days ago and the space has still not been freed up: repo size 172MB
Would it be possible to run a garbage collection on them to free up the space?