Bzr Explorer: View changed files between branch and the parent location

Asked by TL

I create a local branch of the launchpad trunk that I use to run the latest version of the project. Before I pull the latest version of the launchpad trunk into my local branch I want to get a list of what file level changes have occurred on the launchpad trunk since the last time I did a pull (i.e. a list of new, modified, and deleted files). Does Bazaar Explorer provide a command to do this? If not, what bzr command would should I issue?

Thanks,
TL

Question information

Language:
English Edit question
Status:
Solved
For:
Bazaar Edit question
Assignee:
No assignee Edit question
Solved by:
Neil Martinsen-Burrell
Solved:
Last query:
Last reply:
Revision history for this message
Best Neil Martinsen-Burrell (nmb) said :
#1

Bazaar Explorer does not have this as far as I know. The qbzr plugin that underlies Bazaar explorer can do this with "bzr qdiff --new=:parent" to show a diff against the parent branch. If you would like to add this to the "Tools" menu, then you can go to Tools->Add Tool and enter that command.

Revision history for this message
TL (tltools) said :
#2

Thanks Neil Martinsen-Burrell, that solved my question.

Revision history for this message
TL (tltools) said :
#3

Thanks Neil.