C#C
C#3y ago
fasadin

Storing binary files in GIT

I know there is LFS for git and I know in general you should not store any binary files. But

I have big and complex project (for one repo there are more than 7k files, and those are with .gitignore)

There are a lot of files like *.pdf or *.xls but a lot of tests depends on those tests

I thought initialy to make submodule for all those files and store them in LFS, but those files won't ever change. There is no need for versioning on them

My question is.
What is the best way to store binary files that are not changing in repository but are needed for build/run/test process?
Was this page helpful?