Compare commits

..

2 Commits

Author SHA1 Message Date
505d1d6e27 Automatischer Commit 2025-04-15 12:21:43 +02:00
8470c95c38 Automatischer Commit 2025-04-15 12:21:07 +02:00

14
gitmove.sh Executable file
View File

@ -0,0 +1,14 @@
#!/bin/bash
# Konfigurationsvariablen
GIT_USERNAME="dikuever"
GIT_TOKEN="12.14Z_DsdlS"
REPO_URL="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