Create new worktree from existing local base_branch for new feature

git worktree add <local_path> -b <your_new_branch> <base_branch>

Create from exists remote branch for quick checkout/review code

git worktree add <local_path> <exists_remote_branch>