Files
mdbook-template/commit_docu.sh
Martin Sukany cced7f02f7 initial commit
2025-06-05 09:39:46 +02:00

14 lines
332 B
Bash
Executable File

#!/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