This commit fixes issue #1338 by removing duplicate content blocks that
were appearing 3-4 times on the page.
Changes:
1. README.md:
- Removed duplicate "Branch Protection & Review Policy" section (lines 121-134)
- Removed duplicate "Running Locally" section (lines 149-167)
- Kept the detailed "Branch Protection & Review Policy" section at the top
- Kept the first "Running Locally" section with all content
2. POLICY.md:
- Consolidated duplicate content into single cohesive policy
- Merged two "Branch Protection Rules" sections
- Merged two "Default Reviewer" sections
- Merged two "Acceptance Criteria" sections
- Added "Enforcement" and "Notes" sections from second half
The duplicate content was likely caused by a bad merge or template duplication.
This cleanup ensures each section appears only once while preserving all content.
Closes#1338
## Summary
Fixed duplicate content blocks in README.md caused by bad merge.
Branch protection policy, default reviewers, and implementation status
blocks were duplicated 3-4 times on the page.
## Problem
The README.md file had massive duplication from multiple bad merges:
- Branch protection policy appeared 4 times
- Default reviewers appeared multiple times
- Implementation status appeared multiple times
- Repository-specific configuration duplicated
- Acceptance criteria duplicated
The file grew to 517 lines with the same content repeated.
## Solution
Cleaned up README.md to contain:
1. Single branch protection policy section
2. Original Nexus project content (preserved)
3. Clean structure without duplicates
Reduced from 517 lines to 167 lines while preserving all unique content.
## Changes
- Removed duplicate branch protection policy sections
- Removed duplicate default reviewers sections
- Removed duplicate implementation status sections
- Removed duplicate repository-specific configuration
- Removed duplicate acceptance criteria
- Preserved original Nexus project content
- Maintained clear structure and formatting
## Testing
- Verified all unique content is preserved
- Checked for any remaining duplicates
- Confirmed file structure is clean and readable
## Acceptance Criteria
✅ Branch protection policy appears once
✅ Default reviewers appear once
✅ Implementation status appears once
✅ Content is clear and not duplicated
✅ Original Nexus content preserved
Issue: #1338