Reputation: 59232
I did a "bzr branch" from my team's bazaar repository and then committed some changes to my local branch. How can I determine what revision number I initially branched from?
Upvotes: 0
Views: 224
Reputation: 21473
Run bzr missing URL/to/team/branch
and see what's the lowest number of your and theirs revisions (in the case branches have diverged). Previous number is the point where from you branched.
Upvotes: 1
Reputation: 2213
If your team's branch is named differently to your local branch, you can run bzr log
and look at the branch nick:
field. The first revision with your team's branch name is the base revision.
Alternatively, you could look at the creation date of your branch folder. Check that against the timestamps in the commit log.
Upvotes: 0
Reputation: 5505
Look at bzr log
the revision after your commits is the one you branched from. The branch point is not stored by Bazaar as far as I know.
Upvotes: 0