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