azure-devops

List all checked out items in repository


In Azure DevOps we have our source code in various repositories. I to be able to look across a repository and determine who all has items checked out.

I've researched the internet and found nothing. I've tried install various add-ins into Visual Studio and nothing seems to help.


Solution

  • If you about TFVC, you can use TF.EXE with status command. Examples:

    1. For Azure DevOps Services:
    tf vc status $/<TeamProjectName> /collection:https://<org_name>.visualstudio.com /recursive'
    
    1. For Azure DevOps Server:
    tf vc status $/<TeamProjectName> /collection:http://<servername>:8080/<collectionname> /recursive'
    

    However, there are some problems with workspaces. If your developers use local workspaces, you will not find any checkouts.