how to get rid of files in gitlab that are added to new git ignore code example
Example: git ignore remove
git rm -r --cached .
git add .
git commit -m "Removing all files in .gitignore"
git rm -r --cached .
git add .
git commit -m "Removing all files in .gitignore"