0

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!

Kristopher Ives
  • 5,838
  • 7
  • 42
  • 67

2 Answers2

1

from command line: bzr log --forward > somefile.txt

View the file, any commit that is not labeled [merge] happened on that branch. I hope this answers your question. Perhaps I'm reading it wrong. BTW the --forward bit will cause the history to be placed in somefile.txt in forward chrono order rather than the default revers chrono.

user462219
  • 11
  • 1
1

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).

bialix
  • 20,053
  • 8
  • 46
  • 63