initial commit

This commit is contained in:
Martin Sukany
2025-06-05 09:39:46 +02:00
commit cced7f02f7
58 changed files with 7275 additions and 0 deletions

13
commit_docu.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
VAULT_DIR="/Users/martin/OneDrive - kyndryl/Blaupase AIX - Humpola/Power design (Martin)/Documentation"
cd "$VAULT_DIR" || exit
# Check for changes
if [[ $(git status --porcelain) ]]; then
git add .
git commit -m "Auto-commit: $(date +"%Y-%m-%d %H:%M:%S")"
git push # Adjust branch name if necessary
fi