git lfs clone vs git clone

前端 未结 3 1417
轮回少年
轮回少年 2021-02-07 09:51

If I have git lfs installed on the client and I run:

git clone

is this equivalent to

git lfs clone

or will d

3条回答
  •  星月不相逢
    2021-02-07 10:42

    git lfs clone essentially runs the following sequence of commands (see #1973):

    $ GIT_LFS_SKIP_SMUDGE=1 git clone git@something.something.git
    $ cd something
    $ git lfs pull
    

    Notice, git lfs clone has been deprecated since Git LFS 2.3.0 (see #2526). Simply, use git clone.

提交回复
热议问题