remove git repo from folder code example

Example 1: remove git

rm -rf .git

Example 2: remove git tracking

/* Remove Git tracking from an entire folder/directory */

cd project-name // Navigate to the project directory
rm -rf .git // Remove git tracking

Example 3: how to remove git from project

rm -rf .git*

Example 4: git remove folder remotely

git rm -r --cached <folder>
git commit -m "Removed Folder"
git push origin master

Example 5: 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"