Remove a particular file
git rm --cached paper.txt
git add paper.txt
git commit -m "remove file paper.txt"
git push
Remove all files
git rm --cached -r .
git add .
git commit -m "remove all files from .gitignore"
git push
git rm --cached paper.txt
git add paper.txt
git commit -m "remove file paper.txt"
git push
git rm --cached -r .
git add .
git commit -m "remove all files from .gitignore"
git push