~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bundle/commands.py

  • Committer: Aaron Bentley
  • Date: 2006-10-25 15:07:21 UTC
  • mfrom: (2095 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2098.
  • Revision ID: abentley@panoramicfeedback.com-20061025150721-71290b10eff4e691
Merge from bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
 
87
87
    bzr bundle-revisions
88
88
        - Generate a bundle relative to a remembered location
89
 
 
90
89
    bzr bundle-revisions BASE
91
90
        - Bundle to apply the current tree into BASE
92
 
 
93
91
    bzr bundle-revisions --revision A
94
92
        - Bundle to apply revision A to remembered location 
95
 
 
96
93
    bzr bundle-revisions --revision A..B
97
94
        - Bundle to transform A into B
98
95
    """
99
 
    takes_options = ['revision', 'remember',
 
96
    takes_options = ['verbose', 'revision', 'remember',
100
97
                     Option("output", help="write bundle to specified file",
101
98
                            type=unicode)]
102
99
    takes_args = ['base?']
103
100
    aliases = ['bundle']
104
 
    encoding_type = 'exact'
105
101
 
106
102
    def run(self, base=None, revision=None, output=None, remember=False):
107
103
        from bzrlib import user_encoding