how to undo git init code example
Example 1: git undo commit
# Uncommit the changes
git reset --soft HEAD~1
# Completely delete the changes
git reset --hard HEAD~1
Example 2: remove git init
rm -rf .git
Example 3: git init at wrong folder
cd myFolder
rm -rf .git