native macOS codings agent orchestrator
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

auto update

khoi 13c91855 af8b9697

+2 -9
+2
Makefile
··· 76 76 @mkdir -p "$(CURRENT_MAKEFILE_DIR)/Resources/git-wt" 77 77 @curl -fsSL "https://raw.githubusercontent.com/khoi/git-wt/refs/heads/main/wt" -o "$(CURRENT_MAKEFILE_DIR)/Resources/git-wt/wt" 78 78 @chmod +x "$(CURRENT_MAKEFILE_DIR)/Resources/git-wt/wt" 79 + @git add "$(CURRENT_MAKEFILE_DIR)/Resources/git-wt/wt" 80 + @git commit -m "update git-wt" 79 81 80 82 bump-version: # Bump app version (usage: make bump-version [VERSION=x.x.x] [BUILD=123]) 81 83 @if [ -z "$(VERSION)" ]; then \
-9
Resources/git-wt/wt
··· 326 326 done <<< "$files" 327 327 } 328 328 329 - init_submodules() { 330 - local root="$1" 331 - local path="$2" 332 - [ -f "$root/.gitmodules" ] || return 0 333 - git -C "$path" -c protocol.file.allow=always submodule update --init --recursive >/dev/null 2>&1 || true 334 - } 335 - 336 329 copy_files_between() { 337 330 local src="$1" 338 331 local dst="$2" ··· 407 400 fi 408 401 mkdir -p "$(dirname "$path")" 409 402 git -C "$root" worktree add "$path" "$branch" >/dev/null 410 - init_submodules "$root" "$path" 411 403 copy_files_to_worktree "$root" "$path" "$copyignored" "$copyuntracked" "$copymodified" "$copytracked" 412 404 printf '%s\n' "$path" 413 405 return 0 ··· 423 415 fi 424 416 mkdir -p "$(dirname "$path")" 425 417 git -C "$root" worktree add -b "$branch" "$path" "$from" >/dev/null 426 - init_submodules "$root" "$path" 427 418 copy_files_to_worktree "$root" "$path" "$copyignored" "$copyuntracked" "$copymodified" "$copytracked" 428 419 printf '%s\n' "$path" 429 420 }