delete git repository from directory code example
Example 1: delete git repository command line
rm -rf .git
Example 2: gremove folder from git
git rm -r --cached FolderName
git commit -m "Removed folder from repository"
git push origin master
rm -rf .git
git rm -r --cached FolderName
git commit -m "Removed folder from repository"
git push origin master