This repository stores paper artifacts:
instances/for problem instancesresults/for experiment outputs
Large files are handled with Git LFS.
Anything under these folders is tracked by Git LFS:
instances/**results/**
See .gitattributes for the active rules.
- Add files:
git add instances/ results/
git commit -m "Add new instances/results"- Verify LFS-tracked files:
git lfs ls-files- Push to remote:
git pushgit remote add origin <YOUR_REMOTE_URL>
git push -u origin mainMake sure your hosting provider supports Git LFS and has enough quota for your dataset size.
Track another pattern with LFS:
git lfs track "*.bin"
git add .gitattributes
git commit -m "Track .bin files via LFS"If a large file was committed without LFS, migrate history before publishing:
git lfs migrate import --include="path/to/file"