Earlier today, following the instruction on this previous stackoverflow thread, I carelessly ran the following bit of code:
git filter-branch -f --env-filter "GIT_AUTHOR_NAME='Newname'; GIT_AUTHOR_EMAIL='newemail';
And in doing so, I overwrite my coworker's 4048 commits on my particular branch. I attempted to
git reset --hard HEAD
But this does not undo my author overwrite. Is there anyway for me to undo this commit thievery?