Update git remote domain from privategit.hanson.xyz to git.internal.hanson.xyz, remove port 3322

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2026-02-20 07:31:38 +00:00
parent 0efdcd4cde
commit d01a6179aa
6 changed files with 115 additions and 38 deletions

View File

@@ -86,7 +86,7 @@ if ! git remote get-url rspade_upstream >/dev/null 2>&1; then
# Auto-configure remote for project mode (when system/ is a submodule)
if [ "$IS_PROJECT_MODE" = false ] && [ -f "../.gitmodules" ] && grep -q "path = system" ../.gitmodules 2>/dev/null; then
echo "→ Configuring rspade_upstream remote (first-time setup)..."
UPSTREAM_URL="ssh://git@privategit.hanson.xyz:3322/brianhansonxyz/rspade_system.git"
UPSTREAM_URL="ssh://git@git.internal.hanson.xyz/brianhansonxyz/rspade_system.git"
if git remote add rspade_upstream "$UPSTREAM_URL" 2>&1; then
echo " ✓ Remote configured: $UPSTREAM_URL"
echo ""