Can I use wildcards in the extension for Git LFS tracking?

Viewed 1168

It's possible with Git LFS to use wildcards to track all files for a given extension. E.g.

git lfs track "*.jpg"

However, we have 3rd party software that produces binary files with a variety of extensions but they start the same. E.g. file1.xyzaaa, file2.xyzbbb, file3.xyzccc.

Is it possible to use a wildcard in the extension name? E.g.

git lfs track "*.xyz*"

That would be most useful!

1 Answers
Related