File size: 1,783 Bytes
0daf510 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
#!/usr/bin/env bash
set -euo pipefail
# Creates remotes and repos if missing:
# - GitHub: adaptnova/e-zeropoint (private)
# - Hugging Face: LevelUp2x/e-zeropoint (model, private)
GH_ORG=${GH_ORG:-adaptnova}
GH_REPO=${GH_REPO:-e-zeropoint}
HF_NS=${HF_NS:-LevelUp2x}
HF_REPO=${HF_REPO:-e-zeropoint}
echo "[sync] Target GH: ${GH_ORG}/${GH_REPO} | HF: ${HF_NS}/${HF_REPO}"
# Ensure we are inside a git repo
git rev-parse --is-inside-work-tree >/dev/null 2>&1 || { echo "[sync] Not a git repo" >&2; exit 1; }
# GitHub (gh CLI)
if command -v gh >/dev/null 2>&1; then
if ! gh repo view "${GH_ORG}/${GH_REPO}" >/dev/null 2>&1; then
echo "[sync] Creating GH repo ${GH_ORG}/${GH_REPO} (private)"
gh repo create "${GH_ORG}/${GH_REPO}" --private --confirm || true
else
echo "[sync] GH repo exists"
fi
if ! git remote get-url gh >/dev/null 2>&1; then
git remote add gh "https://github.com/${GH_ORG}/${GH_REPO}.git" || true
fi
else
echo "[sync] gh CLI not found; skipping GH repo create"
fi
# Hugging Face (huggingface-cli or hf)
HF_REMOTE_URL="https://huggingface.co/${HF_NS}/${HF_REPO}"
created=0
if command -v huggingface-cli >/dev/null 2>&1; then
echo "[sync] Ensuring HF repo via huggingface-cli"
huggingface-cli repo create "${HF_REPO}" --organization "${HF_NS}" --type model --private -y && created=1 || true
elif command -v hf >/dev/null 2>&1; then
echo "[sync] Ensuring HF repo via hf CLI"
hf api create-repo --repo-type model --name "${HF_REPO}" --organization "${HF_NS}" --private && created=1 || true
else
echo "[sync] No HF CLI found; skipping HF repo create (install huggingface_hub[cli])"
fi
if ! git remote get-url hf >/dev/null 2>&1; then
git remote add hf "${HF_REMOTE_URL}" || true
fi
echo "[sync] Remotes now:"; git remote -v
|