how to make undo git code example
Example 1: how to undo init git
rm -rf .git
Example 2: git undo add
// undo add for one file
git reset <file>
// undo add for all files
git reset
rm -rf .git
// undo add for one file
git reset <file>
// undo add for all files
git reset