Push Tracker
Go to file
Git LFS required — this repo stores large files with Git LFS.
Step 1 — Install git-lfs (once per machine)
Linux: sudo apt-get install git-lfs
Other platforms: git-lfs.com →
Step 2 — Initialise
git lfs install
Push Tracker
ash pushed to main at qoherent/ria-ran--sim-drop 2026-07-01 23:17:22 -04:00
244a6ab05e note

Working with large files — Git LFS

This RIA Hub Project uses Git LFS for large binary files. The .gitattributes in this repo already configures LFS tracking — you just need git-lfs installed locally.

git lfs install
git clone https://riahub.ai/qoherent/ria-ran--sim-drop.git
cd ria-ran--sim-drop
git add .
git commit -m "your message"
git push -u origin main

Files matching the patterns in .gitattributes are automatically stored in LFS on push.

Command-line reference

Creating a new repository on the command line

git lfs install              # one-time per machine
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://riahub.ai/qoherent/ria-ran--sim-drop.git
git push -u origin main

Pushing an existing repository from the command line

git lfs install              # one-time per machine
git remote add origin https://riahub.ai/qoherent/ria-ran--sim-drop.git
git push -u origin main
Files 2 items
2026-07-01 01:40:49 -04:00
.gitattributes Initial commit 2026-07-01 01:40:49 -04:00
README.md Initial commit 2026-07-01 01:40:49 -04:00

ria-ran--sim-drop