Big Ian
Big Ian

Reputation: 163

Is it possible to Rename a work Item type in Azure DevOps?

Is it possible and if so how do I rename a work item type in Azure DevOps (VSTS)?
Essentially I just want to change the name "Bug" to "Defect".

Any thoughts greatly appreciated.

Upvotes: 2

Views: 4870

Answers (2)

oli
oli

Reputation: 798

For an On-premises XML process, one can use Microsoft's tool witadmin.exe and the command renamewitd

It is installed with Visual Studio. The path depends on your version and edition:

Microsoft Visual Studio\{Version}\{Edition}\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer\witadmin.exe

Upvotes: 0

Shayki Abramczyk
Shayki Abramczyk

Reputation: 41555

You can't change the name of "Bug" to another name because it's system work item type.

If you want to use "Defect" instead of "Bug" you can create a custom process template:

enter image description here

Add new work item type with name "Defect" (define all the fields like in Bug):

enter image description here

enter image description here

Disable the "Bug":

enter image description here

Upvotes: 4

Related Questions