Oxen-AI / oxen-release

Lightning fast data version control system for structured and unstructured machine learning datasets. We aim to make versioning datasets as easy as versioning code.
https://oxen.ai
Apache License 2.0
884 stars 12 forks source link

Fix git-lfs track command in Performance #4

Closed albertvillanova closed 1 year ago

albertvillanova commented 1 year ago

There is a mistake in the git-lfs track command in the Performance: images are not properly tracked by Git LFS, thus resulting in a git remote error while pushing.

This PR fixes the git-lfs track command, so that all images are properly tracked by Git LFS.

gschoeni commented 1 year ago

@albertvillanova we were wondering if something was off, thank you! Let me try again and update the performance numbers.

gschoeni commented 1 year ago

Verfied this works with git lfs ls-files 👍

albertvillanova commented 1 year ago

Great!

@gschoeni please note that the fix works because all the files inside the "images" have ".jpg" extension. Alternatively, to track all the files inside the "images" directory, independently of their extension, you could have used:

git lfs track "images/*"