You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rob Konsdorf edited this page Aug 18, 2026
·
1 revision
Wiki sources
These pages are the source of truth for the GitHub wiki. They are kept in the main repo so
documentation changes are reviewed alongside code changes.
To publish to the GitHub wiki of the hosting repo (the wiki git repo exists once the wiki
has at least one page created through the UI):
git clone https://github.com/<owner>/atomicmarket-contract.wiki.git /tmp/market-wiki
cp docs/wiki/*.md /tmp/market-wiki/ # README.md is harmless to includecd /tmp/market-wiki
git add -A && git commit -m "Sync wiki from docs/wiki"&& git push
The copy step never deletes: when a page is removed from docs/wiki, git rm it in the wiki
clone during the same sync, or the wiki keeps serving the removed page.
Page links between the files use wiki-style page names (e.g. [Home](Home)), which resolve
on the GitHub wiki. When viewing these files inside the repo, append .md mentally.