Files
AIclinicalresearch/git-fix-lock.ps1
HaHafeng e59676342a docs(pkb): Add development records and update system status
Summary:
- Add PKB module development record for 2026-01-07
- Create PKB module status document (00-模块当前状态与开发指南.md)
- Update system status document to v2.7

Documents added:
- docs/03-业务模块/PKB-个人知识库/06-开发记录/2026-01-07_PKB模块前端V3设计实现.md
- docs/03-业务模块/PKB-个人知识库/00-模块当前状态与开发指南.md

Documents updated:
- docs/00-系统总体设计/00-系统当前状态与开发指南.md

PKB module progress: 75% complete
- Frontend Dashboard: 90%
- Frontend Workspace: 85%
- 3 work modes implemented
- Batch processing API pending debug
2026-01-07 10:35:03 +08:00

32 lines
580 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