feat(voyage)!: rename git branch namespace ultraplan -> trek [skip-docs]

- commands/trekexecute.md: 6 ultraplan/{slug} refs -> trek/{slug}
- templates/headless-launch-template.md: 7 ultraplan/{slug} refs -> trek/{slug}
- README.md line 273: branch namespace example -> trek/{slug}

Closes the deferred V2 README.md branch-namespace update.

Part of voyage-rebrand session 2 (W3.5 / Step 7).

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
Kjell Tore Guttormsen 2026-05-05 14:42:59 +02:00
commit fc69707454
3 changed files with 14 additions and 14 deletions

View file

@ -467,7 +467,7 @@ git worktree prune
Also check for stale branches:
```bash
git branch --list "ultraplan/{slug}/*" | while read b; do
git branch --list "trek/{slug}/*" | while read b; do
git branch -D "$b" 2>/dev/null
done
```
@ -570,7 +570,7 @@ override for long runs:
For each session N in this wave:
```bash
BRANCH_NAME="ultraplan/{slug}/session-{N}"
BRANCH_NAME="trek/{slug}/session-{N}"
WORKTREE_PATH="$WORKTREE_DIR/session-{N}"
GIT_OPTIONAL_LOCKS=0 git worktree add -b "$BRANCH_NAME" "$WORKTREE_PATH" HEAD
```
@ -717,8 +717,8 @@ branch survives even if cleanup races ahead (research/02 R3 — converts an
unrecoverable failure to a recoverable one). Push failure is non-fatal
(no remote, offline, etc.):
```bash
GIT_OPTIONAL_LOCKS=0 git push origin "ultraplan/{slug}/session-{N}" 2>/dev/null || true
GIT_OPTIONAL_LOCKS=0 git merge --no-ff "ultraplan/{slug}/session-{N}" \
GIT_OPTIONAL_LOCKS=0 git push origin "trek/{slug}/session-{N}" 2>/dev/null || true
GIT_OPTIONAL_LOCKS=0 git merge --no-ff "trek/{slug}/session-{N}" \
-m "merge: ultraplan session {N} — {session-title}"
```
@ -748,7 +748,7 @@ After successful merge of all sessions in the wave:
```bash
for each session N in the wave:
GIT_OPTIONAL_LOCKS=0 git worktree remove "$WORKTREE_DIR/session-{N}" --force
GIT_OPTIONAL_LOCKS=0 git branch -d "ultraplan/{slug}/session-{N}"
GIT_OPTIONAL_LOCKS=0 git branch -d "trek/{slug}/session-{N}"
done
GIT_OPTIONAL_LOCKS=0 git worktree prune
```
@ -777,7 +777,7 @@ done
GIT_OPTIONAL_LOCKS=0 git worktree prune
# Remove session branches
GIT_OPTIONAL_LOCKS=0 git branch --list "ultraplan/{slug}/*" | while read branch; do
GIT_OPTIONAL_LOCKS=0 git branch --list "trek/{slug}/*" | while read branch; do
GIT_OPTIONAL_LOCKS=0 git branch -D "$branch" 2>/dev/null
done