87 lines
1.4 KiB
Bash
87 lines
1.4 KiB
Bash
#!/bin/bash
|
|
|
|
echo "Auto push all dependences..."
|
|
|
|
echo "push install..."
|
|
cd /data/install
|
|
git add -A
|
|
git commit -m autocommit
|
|
git push install main
|
|
|
|
echo "push server-origin..."
|
|
cd /data/server-origin
|
|
git add -A
|
|
git commit -m autocommit
|
|
git push server-origin main
|
|
|
|
echo "push utils..."
|
|
cd /data/utils
|
|
git add -A
|
|
git commit -m autocommit
|
|
git push utils main
|
|
|
|
echo "push backup..."
|
|
cd /data/backup
|
|
git add -A
|
|
git commit -m autocommit
|
|
git push backup main
|
|
|
|
echo "push traefik..."
|
|
cd /data/traefik
|
|
git add -A
|
|
git commit -m autocommit
|
|
git push traefik main
|
|
|
|
|
|
echo "push postgres..."
|
|
cd /data/postgres
|
|
git add -A
|
|
git commit -m autocommit
|
|
git push postgres main
|
|
|
|
echo "push pgadmin..."
|
|
cd /data/pgadmin
|
|
git add -A
|
|
git commit -m autocommit
|
|
git push pgadmin main
|
|
|
|
echo "push gitea..."
|
|
cd /data/gitea
|
|
git add -A
|
|
git commit -m autocommit
|
|
git push gitea main
|
|
|
|
echo "push gitea-init..."
|
|
cd /data/gitea-init
|
|
git add -A
|
|
git commit -m autocommit
|
|
git push gitea-init main
|
|
|
|
|
|
echo "push mariadb..."
|
|
cd /data/mariadb
|
|
git add -A
|
|
git commit -m autocommit
|
|
git push mariadb main
|
|
|
|
echo "push blog-wp..."
|
|
cd /data/blog-wp
|
|
git add -A
|
|
git commit -m autocommit
|
|
git push blog-wp main
|
|
|
|
echo "push blog-wp-install..."
|
|
cd /data/blog-wp-install
|
|
git add -A
|
|
git commit -m autocommit
|
|
git push blog-wp-install main
|
|
|
|
|
|
echo "push tetris..."
|
|
cd /data/tetris
|
|
git add -A
|
|
git commit -m autocommit
|
|
git push tetris main
|
|
|
|
|
|
echo "Push server-origin complete" |