mirror of
https://github.com/eyaltoledano/claude-task-master.git
synced 2025-11-11 07:17:38 +00:00
16 lines
354 B
Bash
16 lines
354 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# List all git worktrees with helpful information
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
echo "📋 Git Worktrees:"
|
||
|
|
echo ""
|
||
|
|
git worktree list
|
||
|
|
echo ""
|
||
|
|
echo "To remove a worktree:"
|
||
|
|
echo " git worktree remove <path>"
|
||
|
|
echo ""
|
||
|
|
echo "To remove all worktrees:"
|
||
|
|
echo " git worktree list | grep -v '(bare)' | tail -n +2 | awk '{print \$1}' | xargs -I {} git worktree remove {}"
|