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