This commit is contained in:
dhruv
2026-05-17 15:30:11 +05:30
commit cae37e5af7
23 changed files with 3607 additions and 0 deletions

14
1_upload_to_gitEa.sh Normal file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
set -e
source "$(dirname "$0")/.env"
COMMIT_MSG="${1:-update}"
git remote remove origin 2>/dev/null || true
git remote add origin https://${GITEA_USER}:${GITEA_TOKEN}@${GITEA_REPO_URL#https://}
git add -A
git commit -m "$COMMIT_MSG" || echo "nothing to commit"
git branch -M main
git push -u origin ${GITEA_BRANCH}