Wiki
/
How to use Wiki.md
# How to use Wiki
Wiki is the best way to give users knowledge about your code, project decisions, setup steps, and release notes that do not belong directly in the repository README.
## Create wiki pages in the web UI
1. Open any repository that needs a wiki.
2. Open **Wiki**.
3. Create a page manually from the web UI.
4. Give the page a clear title and write the content in Markdown.
5. Save the page.
## Use a wiki repository
You can also manage wiki pages with Git by using the repository's `.wiki` repo. For example, if a NobGit repository is called `DotSlash`, its wiki repo is called `dotslash.wiki`.
This lets you push Markdown files to the wiki. The wiki repo is normally hidden from search and does not show in your regular repository list. To make changes, open the repository that has the wiki.
## Wiki file format
Wiki pages are Markdown files. Use clear file names so each page maps cleanly to one wiki page.
```
How to get started.md
How to create repo.md
How to create an access token.md
```
You can also organize pages into folders:
```
Get started/
How to get started.md
How to create repo.md
How to create an access token.md
```
- [Previous: releases](How to upload and use releases.md)
- [Next: passkey or OTP](How to add a passkey or OTP.md)