Reputation: 81510
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.
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?
Upvotes: 1
Views: 473
Reputation: 1324317
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
Upvotes: 2