I removed a folder\files from my Git repo by running
git rm -r --cached Application01
to untrack all the files in that folder and reduce the size of the Git repo.
The problem is that the pack file .git/objects/pack/*.pack is still holding the files I removed\untracked.
How can I completely remove all untracked files and lose all their history and make the pack file smaller?
Thanks