created sh scirpt for uploasdin step files

This commit is contained in:
Dejan Rožič 2025-11-22 14:07:40 +01:00
parent daaf9f9759
commit a9dd3fd767

7
uploadStepFiles.sh Normal file
View file

@ -0,0 +1,7 @@
#!/bin/bash
# save as push-step.sh and run in your repo folder
git lfs track "*.step" "*.stp" 2>/dev/null || true
git add .gitattributes *.step *.stp
git commit -m "Update STEP models $(date +%F)"
git push
echo "STEP files pushed with LFS!"