Rev 1: Add framework for git-rebase plugin. in file:///home/jelmer/bzr/bzr-rebase/

Jelmer Vernooij jelmer at samba.org
Wed Jul 4 01:01:43 BST 2007


At file:///home/jelmer/bzr/bzr-rebase/

------------------------------------------------------------
revno: 1
revision-id: jelmer at samba.org-20070626220011-tgu4eueha4j7b68m
committer: Jelmer Vernooij <jelmer at samba.org>
branch nick: bzr-rebase
timestamp: Wed 2007-06-27 00:00:11 +0200
message:
  Add framework for git-rebase plugin.
added:
  README                         readme-20070626220000-c62864tuxlldx6uc-1
  __init__.py                    __init__.py-20070626215909-fi0s39bkwxn4gcto-1
=== added file 'README'
--- a/README	1970-01-01 00:00:00 +0000
+++ b/README	2007-06-26 22:00:11 +0000
@@ -0,0 +1,2 @@
+This plugin provides a 'bzr rebase' command, in the same fashion of the 
+famous git-rebase.

=== added file '__init__.py'
--- a/__init__.py	1970-01-01 00:00:00 +0000
+++ b/__init__.py	2007-06-26 22:00:11 +0000
@@ -0,0 +1,14 @@
+
+from bzrlib.command import Command
+
+class cmd_rebase(Command):
+    """Re-base a branch.
+
+    """
+    takes_args = ['upstream']
+    takes_options = [Option('onto', help='Different revision to replay onto')]
+    
+    @display_command
+    def run(self, upstream, onto=None):
+        pass
+




More information about the bazaar-commits mailing list