mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 19:57:57 +01:00
131 lines
6.2 KiB
PowerShell
131 lines
6.2 KiB
PowerShell
|
|
<#!
|
||
|
|
.SYNOPSIS
|
||
|
|
Remove a git worktree (and optionally its local branch and orphan fork remote).
|
||
|
|
|
||
|
|
.DESCRIPTION
|
||
|
|
Locates a worktree by branch/path pattern (supports wildcards). Ensures the primary repository
|
||
|
|
root is never removed. Optionally discards local changes with -Force. Deletes associated branch
|
||
|
|
unless -KeepBranch. If the branch tracked a non-origin remote with no remaining tracking
|
||
|
|
branches, that remote is removed unless -KeepRemote.
|
||
|
|
|
||
|
|
.PARAMETER Pattern
|
||
|
|
Branch name or path fragment (wildcards * ? allowed). If multiple matches found they are listed
|
||
|
|
and no deletion occurs.
|
||
|
|
|
||
|
|
.PARAMETER Force
|
||
|
|
Discard uncommitted changes and attempt aggressive cleanup on failure.
|
||
|
|
|
||
|
|
.PARAMETER KeepBranch
|
||
|
|
Preserve the local branch (only remove the worktree directory entry).
|
||
|
|
|
||
|
|
.PARAMETER KeepRemote
|
||
|
|
Preserve any orphan fork remote even if no branches still track it.
|
||
|
|
|
||
|
|
.EXAMPLE
|
||
|
|
./Delete-Worktree.ps1 -Pattern feature/login
|
||
|
|
|
||
|
|
.EXAMPLE
|
||
|
|
./Delete-Worktree.ps1 -Pattern fork-user-featureX -Force
|
||
|
|
|
||
|
|
.EXAMPLE
|
||
|
|
./Delete-Worktree.ps1 -Pattern hotfix -KeepBranch
|
||
|
|
|
||
|
|
.NOTES
|
||
|
|
Manual recovery:
|
||
|
|
git worktree list --porcelain
|
||
|
|
git worktree prune
|
||
|
|
Remove-Item -LiteralPath <path> -Recurse -Force
|
||
|
|
git branch -D <branch>
|
||
|
|
git remote remove <remote>
|
||
|
|
git worktree prune
|
||
|
|
#>
|
||
|
|
|
||
|
|
param(
|
||
|
|
[string] $Pattern,
|
||
|
|
[switch] $Force,
|
||
|
|
[switch] $KeepBranch,
|
||
|
|
[switch] $KeepRemote,
|
||
|
|
[switch] $Help
|
||
|
|
)
|
||
|
|
. "$PSScriptRoot/WorktreeLib.ps1"
|
||
|
|
if ($Help -or -not $Pattern) { Show-FileEmbeddedHelp -ScriptPath $MyInvocation.MyCommand.Path; return }
|
||
|
|
try {
|
||
|
|
$repoRoot = Get-RepoRoot
|
||
|
|
$entries = Get-WorktreeEntries
|
||
|
|
if (-not $entries -or $entries.Count -eq 0) { throw 'No worktrees found.' }
|
||
|
|
$hasWildcard = $Pattern -match '[\*\?]'
|
||
|
|
$matchPattern = if ($hasWildcard) { $Pattern } else { "*${Pattern}*" }
|
||
|
|
$found = $entries | Where-Object { $_.Branch -and ( $_.Branch -like $matchPattern -or $_.Path -like $matchPattern ) }
|
||
|
|
if (-not $found -or $found.Count -eq 0) { throw "No worktree matches pattern '$Pattern'" }
|
||
|
|
if ($found.Count -gt 1) {
|
||
|
|
Warn 'Pattern matches multiple worktrees:'
|
||
|
|
$found | ForEach-Object { Info (" {0} {1}" -f $_.Branch, $_.Path) }
|
||
|
|
return
|
||
|
|
}
|
||
|
|
$target = $found | Select-Object -First 1
|
||
|
|
$branch = $target.Branch
|
||
|
|
$folder = $target.Path
|
||
|
|
if (-not $branch) { throw 'Resolved worktree has no branch (detached); refusing removal.' }
|
||
|
|
try { $folder = (Resolve-Path -LiteralPath $folder -ErrorAction Stop).ProviderPath } catch {}
|
||
|
|
$primary = (Resolve-Path -LiteralPath $repoRoot).ProviderPath
|
||
|
|
if ([IO.Path]::GetFullPath($folder).TrimEnd('\\/') -ieq [IO.Path]::GetFullPath($primary).TrimEnd('\\/')) { throw 'Refusing to remove the primary worktree (repository root).' }
|
||
|
|
$status = git -C $folder status --porcelain 2>$null
|
||
|
|
if ($LASTEXITCODE -ne 0) { throw "Unable to get git status for $folder" }
|
||
|
|
if (-not $Force -and $status) { throw 'Worktree has uncommitted changes. Use -Force to discard.' }
|
||
|
|
if ($Force -and $status) {
|
||
|
|
Warn '[Force] Discarding local changes'
|
||
|
|
git -C $folder reset --hard HEAD | Out-Null
|
||
|
|
git -C $folder clean -fdx | Out-Null
|
||
|
|
}
|
||
|
|
if ($Force) { git worktree remove --force $folder } else { git worktree remove $folder }
|
||
|
|
if ($LASTEXITCODE -ne 0) {
|
||
|
|
$exit1 = $LASTEXITCODE
|
||
|
|
$errMsg = "git worktree remove failed (exit $exit1)"
|
||
|
|
if ($Force) {
|
||
|
|
Warn 'Primary removal failed; performing aggressive fallback (Force implies brute).'
|
||
|
|
try { git -C $folder submodule deinit -f --all 2>$null | Out-Null } catch {}
|
||
|
|
try { git -C $folder clean -dfx 2>$null | Out-Null } catch {}
|
||
|
|
try { Get-ChildItem -LiteralPath $folder -Recurse -Force -ErrorAction SilentlyContinue | ForEach-Object { try { $_.IsReadOnly = $false } catch {} } } catch {}
|
||
|
|
if (Test-Path $folder) { try { Remove-Item -LiteralPath $folder -Recurse -Force -ErrorAction Stop } catch { Err "Manual directory removal failed: $($_.Exception.Message)" } }
|
||
|
|
git worktree prune 2>$null | Out-Null
|
||
|
|
if (Test-Path $folder) { throw "$errMsg and aggressive cleanup did not fully remove directory: $folder" } else { Info "Aggressive cleanup removed directory $folder." }
|
||
|
|
} else {
|
||
|
|
throw "$errMsg. Rerun with -Force to attempt aggressive cleanup."
|
||
|
|
}
|
||
|
|
}
|
||
|
|
# Determine upstream before potentially deleting branch
|
||
|
|
$upRemote = Get-BranchUpstreamRemote -Branch $branch
|
||
|
|
$looksForkName = $branch -like 'fork-*'
|
||
|
|
|
||
|
|
if (-not $KeepBranch) {
|
||
|
|
git branch -D $branch 2>$null | Out-Null
|
||
|
|
if (-not $KeepRemote -and $upRemote -and $upRemote -ne 'origin') {
|
||
|
|
$otherTracking = git for-each-ref --format='%(refname:short)|%(upstream:short)' refs/heads 2>$null |
|
||
|
|
Where-Object { $_ -and ($_ -notmatch "^$branch\|") } |
|
||
|
|
ForEach-Object { $parts = $_.Split('|',2); if ($parts[1] -match '^(?<r>[^/]+)/'){ $parts[0],$Matches.r } } |
|
||
|
|
Where-Object { $_[1] -eq $upRemote }
|
||
|
|
if (-not $otherTracking) {
|
||
|
|
Warn "Removing orphan remote '$upRemote' (no more tracking branches)"
|
||
|
|
git remote remove $upRemote 2>$null | Out-Null
|
||
|
|
if ($LASTEXITCODE -ne 0) { Warn "Failed to remove remote '$upRemote' (you may remove manually)." }
|
||
|
|
} else { Info "Remote '$upRemote' retained (other branches still track it)." }
|
||
|
|
} elseif ($looksForkName -and -not $KeepRemote -and -not $upRemote) {
|
||
|
|
Warn 'Branch looks like a fork branch (name pattern), but has no upstream remote; nothing to clean.'
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
Info "Removed worktree ($branch) at $folder."; if (-not $KeepBranch) { Info 'Branch deleted.' }
|
||
|
|
Show-WorktreeExecutionSummary -CurrentBranch $branch
|
||
|
|
} catch {
|
||
|
|
Err "Error: $($_.Exception.Message)"
|
||
|
|
Warn 'Manual cleanup guidelines:'
|
||
|
|
Info ' git worktree list --porcelain'
|
||
|
|
Info ' git worktree prune'
|
||
|
|
Info ' # If still present:'
|
||
|
|
Info ' Remove-Item -LiteralPath <path> -Recurse -Force'
|
||
|
|
Info ' git branch -D <branch> (if you also want to drop local branch)'
|
||
|
|
Info ' git remote remove <remote> (if orphan fork remote remains)'
|
||
|
|
Info ' git worktree prune'
|
||
|
|
exit 1
|
||
|
|
}
|