Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting all bazaar (bzr) branch list with bzr command

Is there any way to get all bazaar branches from remote shared repository?

I found it can be with Bazaar Explorer, but could not find which be with bzr command.

  • In Git: git branches -r.

  • In Subversion, svn ls <REPOSITORY_ROOT>/branches.

How about in bazaar?

I think it is very important to find what branches are in the repository, and I believe bzr must support that feature easily, but I could not find the way by searching the internet.

like image 927
Seiji Komatsu Avatar asked Nov 12 '22 21:11

Seiji Komatsu


1 Answers

I think bzr heads should do what you need (it's part of the bzrtools plugin, which should be part of the standard distribution).

Note that bzr heads will not show branches in different directories as different if they are identical. It checks the DAG of the repository structure, not the directory layout.

like image 173
Reimer Behrends Avatar answered Jan 04 '23 03:01

Reimer Behrends