remove a folder from github code example
Example 1: delete folder from github repository
git rm -r folder-name
git commit -m "Remove unwanteed folder"
git push
Example 2: How to delete multiples files in Github
In the command-line, navigate to your local repository.
Ensure you are in the default branch:
git checkout master
The rm -r command will recursively remove your folder:
git rm -r folder-name
Commit the change:
git commit -m “Remove duplicated directory”
Push the change to your remote repository:
git push
Example 3: how to delete a folder in github
git rm -r my-folder