This commit is contained in:
2025-06-15 17:10:57 +02:00
parent fca4b53c79
commit c84c5007eb
4 changed files with 335 additions and 0 deletions

14
tools/git_push.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
# checkout.sh - Git repository checkout/update script
# Clones or updates the itenv_web2 repository
set -euo pipefail # Exit on error, undefined vars, pipe failures
# Jump to script directory
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "$SCRIPT_DIR"
cd ..
git add . -A && git commit -m "init" && git push