1
votes

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?

2
Hi, friend. May I know the status of this? Does below method is help for you?Mengdi Liang
Sorry I have to had a chance to get back to this yet.Jules

2 Answers

1
votes

The best way might be to...

  1. clone the wiki repo locally (see: https://docs.microsoft.com/en-us/azure/devops/project/wiki/wiki-update-offline?view=azure-devops)
  2. create a new empty git repo
  3. add a remote for the new repo and push to that remote
  4. then delete the provisioned wiki https://docs.microsoft.com/en-us/azure/devops/project/wiki/provisioned-vs-published-wiki?view=azure-devops#delete-project-wiki
0
votes

install Azure CLI

https://docs.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