06b9f8f308
Co-authored-by: claude <claude@jpaul.io> Co-committed-by: claude <claude@jpaul.io>
27 lines
1.0 KiB
Bash
27 lines
1.0 KiB
Bash
#!/usr/bin/env bash
|
|
#
|
|
# Module 7 lab — create two linked worktrees off the tasks-app repo, each on its own branch.
|
|
# Copy this into your tasks-app repo (the one you git-init'd in Module 2), then run it from inside:
|
|
#
|
|
# cp /path/to/modules/07-worktrees-running-agents-in-parallel/lab/setup-worktrees.sh .
|
|
# bash setup-worktrees.sh
|
|
#
|
|
# It places the new worktree folders next to the repo, so you end up with:
|
|
#
|
|
# <parent>/tasks-app (your existing repo, on its current branch)
|
|
# <parent>/tasks-app-wipe (new worktree on branch feature/wipe)
|
|
# <parent>/tasks-app-remaining (new worktree on branch feature/remaining)
|
|
#
|
|
set -euo pipefail
|
|
|
|
# The directory that contains the repo, so the new worktrees become siblings of it.
|
|
ROOT="$(git rev-parse --show-toplevel)"
|
|
PARENT="$(cd "$ROOT/.." && pwd)"
|
|
|
|
git worktree add "$PARENT/tasks-app-wipe" -b feature/wipe
|
|
git worktree add "$PARENT/tasks-app-remaining" -b feature/remaining
|
|
|
|
echo
|
|
echo "Worktrees created. One repo, three checked-out branches:"
|
|
git worktree list
|