fix: correct git remote repo name to clearpilot.git

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-15 02:44:55 +00:00
parent e98ae2f9d1
commit cea8926604
2 changed files with 2 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ chown -R comma:comma /data/openpilot
### Git ### Git
- Remote: `git@git.hanson.xyz:brianhansonxyz/comma.git` - Remote: `git@git.hanson.xyz:brianhansonxyz/clearpilot.git`
- Branch: `clearpilot` - Branch: `clearpilot`
- Large model files are tracked in git (intentional — this is a backup) - Large model files are tracked in git (intentional — this is a backup)

View File

@@ -61,7 +61,7 @@ fi
# 4. Ensure git remote uses SSH (not HTTPS) # 4. Ensure git remote uses SSH (not HTTPS)
cd /data/openpilot 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) CURRENT_REMOTE=$(git remote get-url origin 2>/dev/null)
if [ "$CURRENT_REMOTE" != "$EXPECTED_REMOTE" ]; then if [ "$CURRENT_REMOTE" != "$EXPECTED_REMOTE" ]; then
echo "Fixing git remote: $CURRENT_REMOTE -> $EXPECTED_REMOTE" echo "Fixing git remote: $CURRENT_REMOTE -> $EXPECTED_REMOTE"