fully remove git from folder code example
Example 1: delete .git 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"