From b0ce951c0f373f1828766d20cf190753635d3dc9 Mon Sep 17 00:00:00 2001 From: defiQUG Date: Sat, 21 Mar 2026 16:30:54 -0700 Subject: [PATCH] Default GITEA_ORG to DBIS for monorepo init script Made-with: Cursor --- .../maintenance/init-monorepo-from-proxmox-gitmodules.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/maintenance/init-monorepo-from-proxmox-gitmodules.sh b/scripts/maintenance/init-monorepo-from-proxmox-gitmodules.sh index e01b735..d0ecb0b 100755 --- a/scripts/maintenance/init-monorepo-from-proxmox-gitmodules.sh +++ b/scripts/maintenance/init-monorepo-from-proxmox-gitmodules.sh @@ -6,13 +6,13 @@ # # Usage: # MONOREPO_ROOT=/path/to/empty/dir ./scripts/maintenance/init-monorepo-from-proxmox-gitmodules.sh -# GITEA_TOKEN=... GITEA_ORG=d-bis ./scripts/maintenance/init-monorepo-from-proxmox-gitmodules.sh --create-remote --push +# GITEA_TOKEN=... GITEA_ORG=DBIS ./scripts/maintenance/init-monorepo-from-proxmox-gitmodules.sh --create-remote --push # # Env: # PROXMOX_ROOT — repo with .gitmodules (default: parent of scripts/maintenance/../../) # MONOREPO_ROOT — target directory (default: $HOME/projects/complete-credential) # GITEA_URL — default https://gitea.d-bis.org -# GITEA_ORG — default d-bis (this instance has no org slug "DBIS"; create it in Gitea or override) +# GITEA_ORG — default DBIS (override e.g. d-bis if needed) # GITEA_TOKEN — for API create + HTTPS push # SHALLOW — if 1, git clone --depth 1 (default 1) @@ -22,7 +22,7 @@ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" PROXMOX_ROOT="${PROXMOX_ROOT:-$(cd "$SCRIPT_DIR/../.." && pwd)}" MONOREPO_ROOT="${MONOREPO_ROOT:-$HOME/projects/complete-credential}" GITEA_URL="${GITEA_URL:-https://gitea.d-bis.org}" -GITEA_ORG="${GITEA_ORG:-d-bis}" +GITEA_ORG="${GITEA_ORG:-DBIS}" SHALLOW="${SHALLOW:-1}" CREATE_REMOTE=0