55 lines
603 B
PowerShell
55 lines
603 B
PowerShell
# Fix Git lock file issue
|
|
# Remove stale lock file and retry commit
|
|
|
|
cd D:\MyCursor\AIclinicalresearch
|
|
|
|
Write-Host "Checking for Git lock file..." -ForegroundColor Yellow
|
|
|
|
$lockFile = ".git/index.lock"
|
|
|
|
if (Test-Path $lockFile) {
|
|
Write-Host "Found stale lock file. Removing..." -ForegroundColor Yellow
|
|
Remove-Item $lockFile -Force
|
|
Write-Host "Lock file removed successfully!" -ForegroundColor Green
|
|
} else {
|
|
Write-Host "No lock file found." -ForegroundColor Green
|
|
}
|
|
|
|
Write-Host ""
|
|
Write-Host "Now you can run git commands again." -ForegroundColor Cyan
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|