mirror of
https://github.com/qwibitai/nanoclaw.git
synced 2026-06-04 10:14:47 +08:00
bda72a4bf4
Sweep of outbound strings, doc URLs, comments, and clone instructions that were missed in the original org rename. One both-match case in setup/lib/channels-remote.sh (URL detection) accepts either name so existing forks with a `qwibitai` remote continue to resolve cleanly; everywhere else is a straight rename. Historical mentions left intact: - CHANGELOG.md (v2.0.0 entry, frozen history) - .claude/skills/add-gmail-tool/SKILL.md (pre-v2 qwibitai skill — historical) - repo-tokens/badge.svg (auto-regenerated by update-tokens.yml)
39 lines
1.5 KiB
Bash
Executable File
39 lines
1.5 KiB
Bash
Executable File
# channels-remote.sh — resolve the git remote that carries the `channels`
|
|
# branch. Source this file and call `resolve_channels_remote`; echoes the
|
|
# remote name (e.g. `origin` or `upstream`).
|
|
#
|
|
# Typical fork setups keep the upstream nanoclaw repo under a remote named
|
|
# `upstream`, with `origin` pointing at the user's fork. The channels branch
|
|
# only lives upstream, so a hardcoded `git fetch origin channels` fails for
|
|
# forks. This helper walks `git remote -v`, picks the remote whose URL points
|
|
# at nanocoai/nanoclaw, and prints its name.
|
|
#
|
|
# Fallback: if no existing remote matches, add `upstream` pointing at
|
|
# github.com/nanocoai/nanoclaw and return that — keeps forks without an
|
|
# explicit upstream configured working on the first try.
|
|
#
|
|
# Explicit override: set NANOCLAW_CHANNELS_REMOTE=<name> to skip detection.
|
|
|
|
resolve_channels_remote() {
|
|
if [ -n "${NANOCLAW_CHANNELS_REMOTE:-}" ]; then
|
|
printf '%s' "$NANOCLAW_CHANNELS_REMOTE"
|
|
return 0
|
|
fi
|
|
|
|
local remote url
|
|
while IFS=$'\t' read -r remote url; do
|
|
case "$url" in
|
|
*qwibitai/nanoclaw*|*nanocoai/nanoclaw*)
|
|
printf '%s' "$remote"
|
|
return 0
|
|
;;
|
|
esac
|
|
done < <(git remote -v 2>/dev/null | awk '$3 == "(fetch)" { print $1"\t"$2 }')
|
|
|
|
# No matching remote — add `upstream` and use it. Silent on failure so
|
|
# callers see the eventual `git fetch` error rather than a cryptic
|
|
# remote-add failure.
|
|
git remote add upstream https://github.com/nanocoai/nanoclaw.git 2>/dev/null || true
|
|
printf '%s' "upstream"
|
|
}
|