delete git repo code example
Example 1: remove git
rm -rf .git
Example 2: delete git repository command line
rm -rf .git
Example 3: delete branch git
//delete locally
git branch -d branch_name
//delete remotely
//git push <remote_name> :<branch_name>
// ex. git push origin :serverfix
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