Reputation: 19075
I have repo located at A
, of which I did a checkout to B
, which I checked out to C
(so C
is bound to B
and B
to A
).
I did some changes in C
, did bzr commit
on B
, but I do not seem to see changes in B
automatically.
Is this an expected behavior or did I screw something up without knowing?
Upvotes: 1
Views: 86
Reputation: 2450
Checkouts of checkouts are not supported, and Bazaar will generally refuse to do bind to a branch that is already bound to something else.
How did you create C, is it actually bound to B ? "bzr info C" should tell you.
Upvotes: 1