Publish to GitHub Wiki
Commit and push pending changes in the sibling ../hmis.wiki repository to the GitHub Wiki.
IMPORTANT: Wiki files live ONLY in the sibling ../hmis.wiki directory. Do NOT create wiki markdown files inside the main project repository (no wiki-docs/ folder) - this causes git submodule issues.
Steps
- •
Check if sibling wiki directory exists:
bashtest -d "../hmis.wiki" && echo "EXISTS" || echo "NOT_FOUND"
- •
If NOT_FOUND, clone the wiki repo:
bashcd .. && git clone https://github.com/hmislk/hmis.wiki.git && cd hmis
- •
Pull latest changes:
bashcd ../hmis.wiki && git pull origin master
- •
Check for pending changes:
bashcd ../hmis.wiki && git status
- •
If there are changes, commit and push:
bashcd ../hmis.wiki git add . git commit -m "Add/update wiki documentation Co-Authored-By: Claude <noreply@anthropic.com>" git push origin master
- •
Report published pages with wiki URLs:
https://github.com/hmislk/hmis/wiki/Page-Name
Important Notes
- •Wiki page names come from file names (dashes become spaces)
- •Always pull latest wiki before committing to avoid conflicts
- •Publish IMMEDIATELY after creating docs, don't wait for PR merge
- •All wiki content is in
../hmis.wiki- NEVER in the main project repo