class Git::Commands::Worktree::Move

Moves a linked worktree to a new filesystem location

@example Move a worktree to a new path

Git::Commands::Worktree::Move.new(execution_context).call('/tmp/old', '/tmp/new')

@example Force-move a locked worktree

Git::Commands::Worktree::Move.new(execution_context).call('/tmp/feat', '/tmp/feat2', 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