how to delete in git code example
Example 1: remove git
rm -rf .git
Example 2: how to remove stuff from git
git rm -r File-Name
Example 3: delete git
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/Leonuch/flex.git
git push -u origin master