- Frontend V3 architecture migration to modules/pkb - Implement three work modes: full-text reading, deep reading, batch processing - Complete batch processing: template selection, progress display, result export (CSV) - Integrate Ant Design X Chat component with streaming support - Add document upload modal with drag-and-drop support - Optimize UI: multi-line table display, citation formatting, auto-scroll - Fix 10+ technical issues: API mapping, state sync, form clearing - Update documentation: development records and module status Performance: 3 docs batch processing ~17-28s Status: PKB module now production-ready (90% complete)
33 lines
581 B
PowerShell
33 lines
581 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|