From 58fb1cf3d3bd219b161f01512b83bcc2ea9b8ea2 Mon Sep 17 00:00:00 2001 From: Darren 'Tadgy' Austin Date: Wed, 10 Sep 2025 16:35:43 +0100 Subject: [PATCH] Remove worktree stuff, for now. --- README.md | 8 -------- worktrees | 9 --------- 2 files changed, 17 deletions(-) delete mode 100755 worktrees diff --git a/README.md b/README.md index 127f390..0dbacfc 100644 --- a/README.md +++ b/README.md @@ -7,11 +7,3 @@ List available branches: Check out specific branch: * git checkout - - -WORKTREES -========= -Instead of checking out individual branches into the worktree, it is possible to checkout multiple branches into sub-directories to work on concurrently. - -The set up script 'worktrees' in the "master" branch will create the necessary structure and add the worktrees. -This script should only be run once per clone's "master" worktree. diff --git a/worktrees b/worktrees deleted file mode 100755 index c5cfed4..0000000 --- a/worktrees +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash -# Set up the structure to use worktrees in this clone. - -BRANCHES=("core") - -for BRANCH in "${BRANCHES[@]"; do - mkdir -p "$BRANCH" - git worktree add "./$BRANCH" "origin/$BRANCH" -done