ms.topic |
---|
include |
You can open and view a wiki page for your project.
Connect to your project using a supported web browser and choose Wiki.
:::image type="content" source="../media/open-wiki-vert-brn.png" alt-text="Screenshot showing highlighted Wiki menu selection.":::
If you need to switch your team project, choose :::image type="icon" source="../../../media/icons/project-icon.png" border="false"::: Azure DevOps to browse all team projects and teams.
::: moniker range="azure-devops"
You can view and open a wiki page defined for a project using the az devops wiki show
command. To get started, see Get started with Azure DevOps CLI.
[!div class="tabbedCodeSnippets"]
az devops wiki show --wiki
[--open]
[--project]
[--subscription]
- --wiki: Required. Name or ID of the wiki.
- --open: Optional. Open the wiki page in your web browser.
- --project -p: Optional. Name or ID of the project.
- --subscription: Optional. Name or ID of subscription. You can configure the default subscription using
az account set -s NAME_OR_ID
.
Open a wiki named 'myprojectwiki'.
[!div class="tabbedCodeSnippets"]
az devops wiki show --wiki myprojectwiki --open
To get the content of a page via the Azure DevOps CLI, enter the az devops wiki show
command.
[!div class="tabbedCodeSnippets"]
az devops wiki page show --path
--wiki
[--include-content]
[--open]
[--project]
[--subscription]
[--version]
- --path: Required. Path of the wiki page.
- --wiki: Required. Name or ID of the wiki.
- --include-content: Optional. Include content of the page.
- --open: Optional. Open the wiki page in your web browser.
- --project -p: Optional. Name or ID of the project.
- --version -v: Optional. Version (ETag) of the wiki page.
Get wiki page content with path 'my wiki' in a wiki named 'myprojectwiki'.
[!div class="tabbedCodeSnippets"]
az devops wiki page show --path 'my wiki' --wiki 'myprojectwiki' --content "Hello World"
::: moniker-end
[!INCLUDE temp]