complete delete a folder in github repository code example
Example 1: git remove folder from repository
# the -r option will recursively delete the folder
git rm -r folder-name
# commit changes
git commit -m "Remove duplicated directory"
Example 2: delete folder from github repository
git rm -r folder-name
git commit -m "Remove unwanteed folder"
git push
Example 3: how to delete a folder in github
git rm -r my-folder