I am trying to resolve a bad merge that was made to our master branch in GitHub. We use Git LFS to store large files. My expected result is to get my working directory back to how it was at a certain commit, large files and all. Master is missing LFS file "storm_ability" which exists in commit 4abc5d6.
How can I revert so that we have that file again?
I have tried:
git revert 4abc5d6
But all I get is an error due to conflict:
error: could not revert 4cb86db... Encountered 1 file(s) that should have been pointers, but weren't: "some_other_lfs_file"
I add that bad file to resolve but there are no other files from that commit, for example, "storm_ability"...? How do I get them all back?
Thank you