~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bundle/commands.py

  • Committer: Robert Collins
  • Date: 2007-04-23 02:29:35 UTC
  • mfrom: (2441 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2442.
  • Revision ID: robertc@robertcollins.net-20070423022935-9hhongamvk6bfdso
Resolve conflicts with 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
 
89
90
    bzr bundle-revisions BASE
90
91
        - Bundle to apply the current tree into BASE
 
92
 
91
93
    bzr bundle-revisions --revision A
92
94
        - Bundle to apply revision A to remembered location 
 
95
 
93
96
    bzr bundle-revisions --revision A..B
94
97
        - Bundle to transform A into B
95
98
    """
96
 
    takes_options = ['verbose', 'revision', 'remember',
 
99
    takes_options = ['revision', 'remember',
97
100
                     Option("output", help="write bundle to specified file",
98
101
                            type=unicode)]
99
102
    takes_args = ['base?']