8 lines
241 B
Bash
8 lines
241 B
Bash
#!/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!"
|