如何使用 "git lfs" 克隆 clarifai-android-sdk?

How to clone clarifai-android-sdk using "git lfs"?

我想使用在以下 link 中找到的 clarifai android 库创建对象检测应用程序:

clarifai android

文档非常清楚,但问题在于使用 git-lfs[克隆 clarifai-android-sdk

这是文档中提到的内容:

1) Git LFS

Before doing anything else, please make sure you have Git-LFS installed on your system. The binary contained in the framework is managed by GitHub using git-lfs.

If you don't have it installed yet, you can find details at: https://git-lfs.github.com. IF YOU DON'T HAVE GIT-LFS INSTALLED, THE SDK WILL NOT WORK.

2) Verifying the SDK

After setting up Git LFS, please ensure that the SDK cloned correctly, by checking the size of the *.aar. If the size is less than ~120MB, then you will need to re-pull master now that Git LFS is set up.

If you downloaded a ZIP of the project via the "Clone or download" button, the SDK will be cloned incorrectly. Either clone the repo with git, or download the *.aar file specifically by clicking on the file through GitHub, and clicking the "Download" button.

如果不清楚这是一个link of the full clarifai-android-sdk documentation

我已经安装了 git-lfs 但是当我尝试克隆 clarifai-android-sdk '.aar' 文件的大小是 100 兆字节,不像前面提到的那样:

if the '*.aar' file is less than 120 megabyte then you will need to re-pull master now that Git LFS is set up.

一般来说:我需要知道我应该怎么做才能解决这个问题?
re-pull master 现在 Git LFS 已设置,具体是什么意思。

我认为做 git pull 会解决这个问题(是的,在 git clone 之后立即做这件事很不寻常,但这似乎就是它所说的。