- 配置 pnpm workspace monorepo 基础结构 - 初始化 .blueprint/ 蓝图:6 个业务模块、21 张任务卡 - 目标:Z Fold 6 折叠屏不动产物品摸底统计 App(React Native + Expo) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
35 lines
987 B
PowerShell
35 lines
987 B
PowerShell
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"
|
|
} |