Changes
🎯 Improvements
- Simplified
wtp addcommand interface- Removed unnecessary flags:
--detach,--track,--force,--cd,--no-cd - Adopted
-bflag pattern matching git-checkout - More intuitive usage
- Removed unnecessary flags:
🐛 Bug Fixes
- Fixed error handling when removing dirty worktrees
- Error messages now display properly
- Added guidance to use
--forceor--force-branchflags
📝 Documentation
- Updated documentation for new interface
- Clarified development practices
Usage Examples
Create worktree from existing branch:
```bash
wtp add feature/auth
```
Create new branch and worktree:
```bash
wtp add -b feature/new-feature
```
Create new branch from specific commit:
```bash
wtp add -b hotfix/urgent abc123
```