MARK CALLAGHAN wrote: > On Sat, Oct 11, 2008 at 3:09 PM, Brian Aker <[EMAIL PROTECTED]> wrote: >> Hi! >> >> For your patches could you list out the changeset numbers when you add them? >> It would make cheery picking them much easier :) >> >> Cheers, >> -Brian >> > > OK > > What bzr command... > * lists all changesets per file (optionally restricted to my branch) > * lists all changesets from my branch > > I branched from 5.0 and 5.1. My branches are 5.0-map and 5.1-map. When > I run 'bzr log' in 5.0-map it lists all of the changes from 5.0-map > and from 5.0. >
Well... what you might want here is to grab a pure 5.0 branch, then do: cd 5.0-map bzr missing --mine-only ../5.0 (or bzr missing --mine-only lp:mysq-server/5.0 if you don't want to branch 5.0) bzr log can be run on a file: bzr log sql/sql_plugin.h What you might want to do is find the first revision that's yours from the merge, and do bzr tag -r<the revision> MARK_START Then you could do bzr log -rtag:MARK_START.. sql/sql_plugin.h Which would get you logging of what's gone on in the tree since you started on it. Monty _______________________________________________ Mailing list: https://launchpad.net/~drizzle-discuss Post to : [email protected] Unsubscribe : https://launchpad.net/~drizzle-discuss More help : https://help.launchpad.net/ListHelp

