I'm using git to manage a non-coding-project folder that has some large files scattered all over the place.
I'm not interesting in moving the files around as they are not mine, but I know git has issues with very large files (in Linus's words, "we suck at it") and I'd like to avoid those performance issues as much as I can. So here I am, just ran git init
and about to hit enter on git add -A
but stop just before I do.
I'd like to try to add a flag to git add
that selects only certain files. I'm not wanting to be prejudiced based on extension, only based on size. Can add
or my .gitignore
file do that?