Manages Git worktrees to enable seamless parallel development across multiple branches without the overhead of context switching.
The Git Worktree Manager skill streamlines the use of git worktree via the crewchief CLI, allowing developers to work on multiple features, hotfixes, or experiments in isolated directories simultaneously. By automating environment setup—such as copying .env files—providing safe merge strategies, and handling branch cleanup, it eliminates the risks and friction associated with traditional branch switching and manual directory management. It is ideal for developers running long-lived processes who need to jump between tasks without disrupting their active environment.
主要功能
01Efficient branch lifecycle management including bulk cleanup options
02Safe merge operations with commit statistics and automated cleanup
03Interactive subshell navigation for isolated development environments
040 GitHub stars
05Automated worktree creation with environment file synchronization
06Parallel development support for running multiple servers or tests
使用场景
01Performing code reviews by checking out PR branches without stashing or committing current work-in-progress
02Developing a new feature while maintaining a long-running dev server on a different branch
03Experimenting with risky refactors in an isolated directory without affecting the main codebase