Is it possible for git lfs pull to ignore some files / folders?

前端 未结 3 1676
太阳男子
太阳男子 2020-12-16 12:45

Short question: Is it possible to configure git such that regular git pull will ignore some files?

Problem description: I have a repository that includes some large

3条回答
  •  感动是毒
    2020-12-16 13:02

    git checkout patch (choose files to checkout)

    The only way i can think of to do something like this is to use partial checkout

    git checkout -p
    

    It will allow you to choose which files will be checked out manually.

提交回复
热议问题