how to delete from git code example
Example 1: delete git
rm -rf .git
Example 2: delete file from a branch git
git rm --cached file1.txt
git commit -m "remove file1.txt"
Example 3: delete file from a branch git
git rm file1.txt
git commit -m "remove file1.txt"
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