how to remove github from directory code example
Example 1: how to delete a folder in github
git rm -r my-folder
Example 2: delete folder from github repository
git rm -r folder-name
git commit -m "Remove unwanteed folder"
git push
git rm -r my-folder
git rm -r folder-name
git commit -m "Remove unwanteed folder"
git push