Search code examples
gitgit-lfs

Git LFS: Get the complete list from the whole repository


I have only found git lfs ls-files but this command give only the list from a specific ref.

There is a way to have the whole list of LFS object from a Git repository?


Solution

  • You can do this in Git LFS v2.4.0 and later using the --all flag

    git lfs ls-files --all
    

    You can read more about it in this pull request.