No WorkingTree exists after branching

Eli Zaretskii eliz at gnu.org
Sat Oct 19 14:44:30 UTC 2013


> Date: Sat, 19 Oct 2013 21:34:41 +0800
> From: Xue Fuqiao <xfq.free at gmail.com>
> 
> I'd like to initialize my local bzr repo for Emacs after installing
> bzr. Here's my procedure:
> 
> $ cd emacs-repo/
> $ bzr init-repo main/
> $ cd main/
> $ bzr branch bzr+ssh://xfq@bzr.savannah.gnu.org/emacs/trunk trunk
> Branched 114717 revisions.
> 
> Then I tried "bzr st":
> $ bzr st
> bzr: ERROR: No WorkingTree exists for
> "file:///home/xfq/emacs-repo/main/trunk/.bzr/checkout/".

Sounds like your branch was somehow created with no working tree.  Try
this to fix that:

  $ cd /home/xfq/emacs-repo/main/trunk
  $ bzr reconfigure --tree

It is possible that the repository was for some reason created to
produce tree-less branches.  What does this say:

  $ cd /home/xfq/emacs-repo/main
  $ bzr info

If it says the repository is without trees, you can reconfigure that
as well:

  $ cd /home/xfq/emacs-repo/main
  $ bzr reconfigure --with-trees



More information about the bazaar mailing list