Project

General

Profile

Revision Control (bzr) tips

Listing Merged Comments
The default behavior of the 'bzr log’ command it to show commit comments for mainline (trunk) versions only. Comments for versions of branches merged to the mainline are hidden. To view these comments use the '-n0’ switch as in 'bzr log -n0’. One can also limit the revisions displayed via the -r switch. For example, 'bzr log -r4 -n0’ will show the mainline and merged comments (if any) for mainline revision 4. Furthermore, 'bzr log -r4..2 -n0’ will show mainline and merged comments from revision 4 through revision 2 inclusive.

It’s important to note that the Launchpad web interface does not show merged comments.