如何在没有树视图的情况下查看 Azure Repos 中的分支?

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

文档 Manage branches 说当您在 Azure 中查看分支时,它们会以可折叠的树视图列出。

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

当我试图找到最近的分支时,我发现可折叠树视图会分散我的注意力。

我如何在 Azure Repos 中没有可折叠树视图的情况下查看它们,或者失败时,有没有办法一次展开所有文件夹?

我没有看到任何在 Azure 端配置分支表示的明显方法。

这让您可以使用本地命令行替代 find the most recent branch

git fetch
git branch -av --sort=committerdate | head 1