I need help with removing files from GIT, which was pushed to Bitbucket and now I need to remove them.
Detailed explanation
I created project and git push origin master full folder. But after 2 weeks I did some changes and now I want to remove image folder from repository (where are stored images from users). So I added path to .gitignore file (/public/images/). Then push changes to Bitbucket. But problem is, that on Bitbucket repository is still folder /public/images/ and when I deploy on production, there is /public/images/ folder in each version. So I need to delete it from Bitbucket repository, and I don't know how. I thought when I add ignore line in GIT, then it will be automaticaly destroyed from repository.