github remove folder from repository code example
Example 1: git remove folder remotely
git rm -r --cached <folder>
git commit -m "Removed Folder"
git push origin master
Example 2: remove folders from remote git
git rm -r --cached FolderName
git commit -m "Removed folder from repository"
git push origin master
Example 3: 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 4: how to delete a folder in github
git rm -r my-folder
Example 5: git remove from folder
rm -rf .git