Reputation: 7774
I’ve setup a provisioned wiki in my dev ops project. However I’ve realised I really should have setup a published code wiki instead.
Those were the two initial options, but I can’t see an option to change this?
Upvotes: 4
Views: 4240
Reputation: 6798
install Azure CLI
https://learn.microsoft.com/en-us/cli/azure/install-azure-cli
install devops extension
az extension add --name azure-devops
move to local project (the remote will be taken from .git directory)
cd C:\...\Workspaces\DevOps\ProjectName
auth
az login
get repository ID from id attribute (wiki has its own repo)
az devops wiki list
delete wiki
az repos delete --id af610cde-6c7c-40ba-8f59-d04b0f1ca51b
open AzureDevOps WIKI and select publish code option
Upvotes: 5
Reputation: 1245
The best way might be to...
Upvotes: 3