Automatischer Commit

This commit is contained in:
Dirk 2025-04-15 12:24:26 +02:00
parent 02720fb4e5
commit bfd4e77323

13
gitmove.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash
# Konfigurationsvariablen
GIT_USERNAME="dikuever"
REPO_URL="https://mygitea.ddns.net/dikuever/pihole.git"
# Git-Repo mit Token in der URL
git remote set-url origin https://${GIT_USERNAME}:${GIT_TOKEN}@${REPO_URL}
# Änderungen pushen
git add .
git commit -m "Automatischer Commit"
git push origin master