how to remove a folder in remote git repo directly code example
Example 1: remove folders from remote git
git rm -r --cached FolderName
git commit -m "Removed folder from repository"
git push origin master
Example 2: remove folders from remote git
git rm -r --cached myFolder