From c391e5853e5c9cf10b7a6294332018e28bcaed71 Mon Sep 17 00:00:00 2001 From: Eric Spooner Date: Tue, 2 Dec 2025 14:10:47 -0600 Subject: [PATCH] Add content synchronization instructions --- .github/copilot-instructions.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index 1bcf48a..e085a69 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -1,3 +1,4 @@ +````instructions # GitHub Copilot Instructions **Never use the unicode multiplication symbol (×, U+00D7) in any documentation, code, or markdown.** @@ -28,6 +29,21 @@ All challenge pages must include the following tags: ## Visibility Tags - `hidden`: Use this tag to prevent the page from being published to the fargo3d.com website. +# Content Synchronization + +The `wiki-fargo3d` submodule contains the official documentation. Some content is mirrored in the main repository root. + +- **Readme.md vs wiki-fargo3d/Home.md**: Keep announcements and general descriptions in sync. +- **challenges.md vs wiki-fargo3d/Current-Challenge.md**: `challenges.md` should reflect the active challenge found in the wiki. +- **itinerary.md vs wiki-fargo3d/Itinerary.md**: Keep meeting schedules in sync. + +## Git Workflow for Wiki Updates +1. Make changes in `wiki-fargo3d/`. +2. Commit and push changes in `wiki-fargo3d`. +3. Go to root `P:\3dPrintMeetup`. +4. Commit the submodule update. +5. Push root changes. + ## Example Front Matter ```yaml @@ -37,3 +53,4 @@ tags: - challenge-002 --- ``` +````