delete a repo in git code example
Example 1: delete a branch in git
// delete branch locally
git branch -d localBranchName
// delete branch remotely
git push origin --delete remoteBranchName
Example 2: how to remove git from project
rm -rf .git*
Example 3: delete git repository command line
rm -rf .git