From cea89266047570b0c1f30ca34c33166322616aaf Mon Sep 17 00:00:00 2001 From: Brian Hanson Date: Wed, 15 Apr 2026 02:44:55 +0000 Subject: [PATCH] fix: correct git remote repo name to clearpilot.git Co-Authored-By: Claude Opus 4.6 (1M context) --- CLAUDE.md | 2 +- system/clearpilot/provision.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index f0ad3af..e13358a 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -47,7 +47,7 @@ chown -R comma:comma /data/openpilot ### Git -- Remote: `git@git.hanson.xyz:brianhansonxyz/comma.git` +- Remote: `git@git.hanson.xyz:brianhansonxyz/clearpilot.git` - Branch: `clearpilot` - Large model files are tracked in git (intentional — this is a backup) diff --git a/system/clearpilot/provision.sh b/system/clearpilot/provision.sh index e022e6c..c9b661b 100644 --- a/system/clearpilot/provision.sh +++ b/system/clearpilot/provision.sh @@ -61,7 +61,7 @@ fi # 4. Ensure git remote uses SSH (not HTTPS) cd /data/openpilot -EXPECTED_REMOTE="git@git.hanson.xyz:brianhansonxyz/comma.git" +EXPECTED_REMOTE="git@git.hanson.xyz:brianhansonxyz/clearpilot.git" CURRENT_REMOTE=$(git remote get-url origin 2>/dev/null) if [ "$CURRENT_REMOTE" != "$EXPECTED_REMOTE" ]; then echo "Fixing git remote: $CURRENT_REMOTE -> $EXPECTED_REMOTE"