In order to backup some GitHub repositories, I followed this tutorial, cloned those repositories with the --mirror option and then fetched Git LFS. Sometimes the output is simple:
$ git lfs fetch --all
fetch: Fetching all references...
However, for some repositories, the output would be:
$ git lfs fetch --all
fetch: 1 object found, done.
fetch: Fetching all references...
Both would create an empty folder lfs/tmp without downloading anything. So what does "1 object found" mean? Why is there a difference between repositories?
Git LFS doc didn't explain the output.