I added git LFS to a repository and wanted to convert a few already committed files to LFS objects. I ran the following command:
git lfs migrate import --include="*.shelf"
Now in my local repository, all *.shelf
files have been replaced with text pointers.
I then ran a git push
, but unfortunately, the sizes of my files were too big even for LFS, and the command caused an error. Now all I have is text pointers and do not know how to get my original files back.
Surely they must be saved somewhere locally before they were pushed?
How do I get my original files back?
Check first if
git lfs-checkout
would work.As documented in "What does git lfs migrate do?":