# the -r option will recursively delete the folder
git rm -r folder-name
# commit changes
git commit -m "Remove duplicated directory"
For root folder -> git rm -r myFolder
For sub folder -> git rm -r publicmyFolder
git commit -m 'myFolder is deleted'
git push
git rm -r myFolder
git rm -r myfolder
git commit -m 'myFolder is deleted'
git push
sql
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)