0

The documentation Manage branches says that branches are listed with a collapsable tree view when you're viewing them in Azure.

If your team uses a forward slash separator in your branch names, you'll see a collapsible tree view for those branches.

Screenshot from documentation

I find the collapsible tree view a distraction when I'm just trying to find the most recent branch.

How can I view them without the collapsible tree view in Azure Repos, or failing that, is there a way to expand all folders at once?

Andrew Grimm
  • 78,473
  • 57
  • 200
  • 338

1 Answers1

2

I don't see any obvious way to configure the branch representation on Azure side.

That leaves you with a local command-line alternative to find the most recent branch

git fetch
git branch -av --sort=committerdate | head 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250