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
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.