remove changes after git add code example
Example 1: git undo add
// undo add for one file
git reset <file>
// undo add for all files
git reset
Example 2: how to undo git add --all
git reset # Will unstage all the files you've added after your last commit