From a9dd3fd7674b825112e84fc0f9ef023fb5b10cf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dejan=20Ro=C5=BEi=C4=8D?= Date: Sat, 22 Nov 2025 14:07:40 +0100 Subject: [PATCH] created sh scirpt for uploasdin step files --- uploadStepFiles.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 uploadStepFiles.sh diff --git a/uploadStepFiles.sh b/uploadStepFiles.sh new file mode 100644 index 0000000..dcf870a --- /dev/null +++ b/uploadStepFiles.sh @@ -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!"