how to undo git add 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: git undo add
// undo add for one file
git reset <file>
// undo add for all files
git reset
Example 3: revert git add
git reset <file> or git reset
Example 4: undo git add but keep changes
git reset -- FILE_NAME