class Git::Commands::Worktree::Remove
Removes a linked worktree
@example Remove a clean worktree
Git::Commands::Worktree::Remove.new(execution_context).call('/tmp/feature')
@example Force-remove an unclean worktree
Git::Commands::Worktree::Remove.new(execution_context).call('/tmp/feature', force: true)
@note โarguments` block audited against
https://git-scm.com/docs/git-worktree/2.54.0
@see Git::Commands::Worktree Git::Commands::Worktree for the full sub-command list
@see git-scm.com/docs/git-worktree git-worktree documentation
@api private