On a rare occasion a git pull will cause an issue on our site and I need to quickly rewind the clock so the developer can fix the issue. I've tried git reset HEAD@{1}
but that doesn't do the trick as some of the files are still changed. As though it only rolls back some files.
Is there a single command I can call to reliably revert files back before the most recent git pull
command?