remove .git files code example
Example 1: git remove folder remotely
git rm -r --cached <folder>
git commit -m "Removed Folder"
git push origin master
Example 2: how to remove stuff from git
git rm -r File-Name
git rm -r --cached <folder>
git commit -m "Removed Folder"
git push origin master
git rm -r File-Name