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"