Git Commands
#devops
Undo the Last Commit (Without Losing Changes)
git reset HEAD~1This moves your branch pointer back one commit so that the files you committed (including the node_modules) are now unstaged changes.
git reset HEAD~1This moves your branch pointer back one commit so that the files you committed (including the node_modules) are now unstaged changes.