undo add 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
Example 3: undo git
# KEEP CHANGES
git reset --soft HEAD~1
# REMOVE CHANGES
git reset --hard HEAD~1
Example 4: revert git add
git reset <file> or git reset
Example 5: how to undo git add --all
git reset # Will unstage all the files you've added after your last commit
Example 6: undo git add but keep changes
git reset -- FILE_NAME