git delete folder from repository code example
Example 1: how to remove git from a folder
rm -rf .git
Example 2: 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"