how to stop git add operation in cli code example
Example: git undo add
// undo add for one file
git reset <file>
// undo add for all files
git reset
// undo add for one file
git reset <file>
// undo add for all files
git reset