If I have git lfs installed on the client and I run:
git clone
is this equivalent to
git lfs clone
or will different results occur?
Thank you!
The answer to this question:
Can one clone a Git LFS repo without installing Git LFS?
seems to imply that git clone will work if you have git lfs installed. It isn't clear if this means that the two commands will work the same. Unfortunately my reputation is too low to comment and ask.
Read through this article to understand behind the scenes of
git lfs clone
vsgit clone
https://developer.atlassian.com/blog/2016/04/git-lfs-12-clone-faster/I updated the git client from 2.10.0 to 2.16.1 and it now says:
I suppose the answer is that git lfs clone is now pretty much the same thing as git clone and the separate command will disappear.
git lfs clone
essentially runs the following sequence of commands (see #1973):Notice,
git lfs clone
has been deprecated since Git LFS 2.3.0 (see #2526). Simply, usegit clone
.