Write-Host "Testing git installation..." $gitPath = "E:\Scoop\apps\git\2.53.0\bin\git.exe" if (Test-Path $gitPath) { Write-Host "Git executable exists at: $gitPath" & $gitPath --version } else { Write-Host "Git executable not found" } Write-Host "`nChecking current symlink..." $currentLink = "E:\Scoop\apps\git\current" if (Test-Path $currentLink) { Write-Host "Current link exists" $target = Get-Item $currentLink | Select-Object -ExpandProperty Target Write-Host "Current link target: $target" } else { Write-Host "Current link does not exist" } Write-Host "`nChecking sh.exe..." $shPath = "E:\Scoop\apps\git\current\bin\sh.exe" if (Test-Path $shPath) { Write-Host "sh.exe exists at: $shPath" } else { Write-Host "sh.exe not found at: $shPath" } Write-Host "`nChecking shim..." $shimPath = "E:\Scoop\shims\sh.shim" if (Test-Path $shimPath) { Write-Host "sh.shim exists" Get-Content $shimPath } else { Write-Host "sh.shim not found" }