List:Commits« Previous MessageNext Message »
From:Daniel Fischer Date:June 18 2008 4:55pm
Subject:bzr commit into mysql_plugins branch (df:131)
View as plain text  
#At file:///shared/home/df/mysql/bazaar/mysql_plugins-unmerged/

  131 Daniel Fischer	2008-06-18
      Implement "bzr unmerged", which shows revisions present in one branch and
      not in another, including non-mainline revisions. Currently only works for
      branches that share the same repository.
modified:
  __init__.py

=== modified file '__init__.py'
--- a/__init__.py	2008-06-18 13:03:09 +0000
+++ b/__init__.py	2008-06-18 16:54:48 +0000
@@ -32,12 +32,14 @@ import collapse
 import parent
 import hooks
 import sanity
+import unmerged
 """)
 
 version_info = (0, 3, 10)
 
 register_command(parent.cmd_parent)
 register_command(collapse.cmd_collapse)
+register_command(unmerged.cmd_unmerged)
 try:
   import importmbox
   register_command(importmbox.cmd_importmbox)

Thread
bzr commit into mysql_plugins branch (df:131) Daniel Fischer18 Jun