git command to remove directory in git code example
Example: gremove folder from git
git rm -r --cached FolderName
git commit -m "Removed folder from repository"
git push origin master
git rm -r --cached FolderName
git commit -m "Removed folder from repository"
git push origin master