_Sidebar.md for the GitHub wiki experience.wiki/ directory (not to be confused with the repo’s own name) holds the long-running file-format, Odyssey, and 2D table documentation. Existing in-repo links point at paths under wiki/. A bulk move of that tree would require a link-update migration; until then, new guides at the root link in to wiki/index.md and related pages.First-time init: The URL https://github.com/OpenKotOR/website.wiki does not exist as a git remote until a maintainer opens the Wiki tab on OpenKotOR/website and creates the first page in the web UI and saves. Until then, git push reports Repository not found (this is a GitHub limitation, not your credentials). After the wiki exists, mirroring works.
Mirror from a clone of this repository:
cd path/to/clone
git remote add website-wiki https://github.com/OpenKotOR/website.wiki.git
git push website-wiki main:main --force
If the wiki uses master, use main:master instead. Interactive (recommended for maintainers): from the root of this repository, use either:
scripts/push-wiki-remotes.ps1 (PowerShell — numbered menu)scripts/push-wiki-remotes.sh (Bash / Git Bash — same options)Non-interactive (mirror only to website.wiki): scripts/Mirror-Website-Wiki.ps1 from the repository root.
Force overwrites the wiki’s branch to match; coordinate with the team first.
OpenKotOR/website and related checkouts (for example the openkotor-site workspace) may add this repository as a wiki/ git submodule. After cloning, run: git submodule update --init --recursive.