remove folders from remote git

C++
git rm -r --cached FolderName
git commit -m "Removed folder from repository"
git push origin master
rm -rf .gitgit rm -r --cached myFolder
git rm -r one-of-the-directories // This deletes from filesystem
git commit . -m "Remove duplicated directory"
git push origin <your-git-branch> (typically 'master', but not always)

Source

Also in C++: