-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocs-commit.bat
More file actions
45 lines (38 loc) · 1.63 KB
/
docs-commit.bat
File metadata and controls
45 lines (38 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
@echo off
REM Git commit script for documentation cleanup
echo Adding new documentation files...
git add docs/ACTION_PLAN_2026.md
git add docs/DOCUMENTATION_AUDIT_2026.md
git add docs/FEATURE_MATRIX.md
git add docs/archived/
git add docs/server/
git add docs/cleanup.bat
git add docs/cleanup.ps1
git add docs/cleanup.sh
echo.
echo Creating commit...
git commit -m "docs: archive 21 planning/phase docs + cleanup 5 redundant files + add feature matrix
CLEANUP:
- Archived 6 planning documents to docs/archived/planning/
(ROADMAP_V2, STRATEGIC_RECOMMENDATIONS, GRAPHRAG_IMPLEMENTATION_PLAN,
DOTMIM_SYNC plans, INDEX)
- Archived 16 phase completion documents to docs/archived/phases/
(PHASE1-6_COMPLETE, PHASE9 progress docs, sync completion docs)
- Deleted 5 redundant/duplicate documents
(IMPLEMENTATION_STATUS, TEST_EXECUTION_REPORT, ADD_IN_PATTERN_SUMMARY,
VISUAL_SUMMARY, QUICK_REFERENCE)
NEW DOCUMENTATION:
- docs/FEATURE_MATRIX.md - Complete feature list (all Phase 1-10 = 100%%)
- docs/DOCUMENTATION_AUDIT_2026.md - Full audit of 116 files
- docs/ACTION_PLAN_2026.md - 14-week implementation roadmap
- docs/server/IMPLEMENTATION_PLAN.md - SharpCoreDB.Server architecture
- docs/archived/ structure with README files
FIXES:
- Phase 9 status corrected: 29%% → 100%% complete
- GraphRAG clarified: ROWREF + GRAPH_TRAVERSE fully implemented
- Dotmim.Sync status corrected: 'Phase 1 skeleton' → 100%% complete (84/84 tests)
All git history preserved with 'git mv'. No information lost.
Documentation now accurately reflects v1.4.1 production-ready status."
echo.
echo Commit created! Review with: git log -1
echo To push: git push origin master