Andrew Grimm
Andrew Grimm

Reputation: 81510

How can I view branches in Azure Repos without the tree view?

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?

Upvotes: 1

Views: 473

Answers (1)

VonC
VonC

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

Related Questions