how to remove folder from github repository code example
Example 1: git remove folder remotely
git rm -r
git commit -m "Removed Folder"
git push origin master
Example 2: git remove folder from repository
git rm -r folder-name
git commit -m "Remove duplicated directory"
Example 3: delete folder from github repository
git rm -r folder-name
git commit -m "Remove unwanteed folder"
git push
Example 4: git remove from folder
rm -rf .git
Example 5: how to delete a folder in github
git rm -r my-folder
Example 6: gremove folder from git
git rm -r
git commit -m "Removed folder from repository"
git push origin master