1# Install Hugging Face CLI
2python -m pip install huggingface_hub
3
4# Login to Hugging Face
5huggingface-cli login1git clone https://huggingface.co/<your-username>/<your-model-name>
2cd <your-model-name>1# Initialize Git LFS
2git lfs install
3
4# Enable large file support
5huggingface-cli lfs-enable-largefiles .
6
7# Track safetensor files and tokenizer.json (because they're large)
8git lfs track "*.safetensors" "tokenizer.json"1git add .
2git commit -m "Add model files"
3git pushgit lfs status to check file trackingREADME.md with model details