Search code examples
version-controlbazaar

Quantify Branch-specific changes in Bazaar


I've been working on a fork of critical component of our source tree, and I'm interested to see how many changes have been made. I originally bzr branch'd the project, but because of paralell development I have been doing a bzr merge to stay up-to-date.

How can I see only the changes I've been commiting in this branch?

THANK YOU!


Solution

  • According to bzr documentation submit: revision identifier can be used to see only your changes, so running in your branch

    bzr diff -r submit:
    

    should show you your changes without merged changes.

    You can also inspect the diff of your changes how they will look after merge to the trunk, run

    bzr merge --preview YOUR_BRANCH
    

    in the main branch (trunk).