Assaf Gordon wrote: > How can I tell (programatically) which branches does a repository > have, or alternatively, clone them all at once?
This page says `bzr heads' will work: http://stackoverflow.com/questions/19082720/getting-all-bazaar-bzr-branch-list-with-bzr-command but I did not test it. Frankly I suggest you just rsync the repo and examine it locally for .bzr directories, eg: rsync -anv bzr.savannah.gnu.org::bzr/emacs This also solves your "clone all at once" issue, and your "out of memory" issue.