1
# Copyright (C) 2004, 2005 by Canonical Ltd
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
# GNU General Public License for more details.
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
# DO NOT change this to cStringIO - it results in control files
19
# FIXIT! (Only deal with byte streams OR unicode at any one layer.)
21
from StringIO import StringIO
26
from bzrlib import BZRDIR
27
from bzrlib.commands import Command, display_command
28
from bzrlib.branch import Branch
29
from bzrlib.revision import common_ancestor
30
import bzrlib.errors as errors
31
from bzrlib.errors import (BzrError, BzrCheckError, BzrCommandError,
32
NotBranchError, DivergedBranches, NotConflicted,
33
NoSuchFile, NoWorkingTree, FileInWrongBranch)
34
from bzrlib.option import Option
35
from bzrlib.revisionspec import RevisionSpec
37
from bzrlib.trace import mutter, note, log_error, warning, is_quiet
38
from bzrlib.workingtree import WorkingTree
41
def tree_files(file_list, default_branch=u'.'):
43
return internal_tree_files(file_list, default_branch)
44
except FileInWrongBranch, e:
45
raise BzrCommandError("%s is not in the same branch as %s" %
46
(e.path, file_list[0]))
48
def internal_tree_files(file_list, default_branch=u'.'):
50
Return a branch and list of branch-relative paths.
51
If supplied file_list is empty or None, the branch default will be used,
52
and returned file_list will match the original.
54
if file_list is None or len(file_list) == 0:
55
return WorkingTree.open_containing(default_branch)[0], file_list
56
tree = WorkingTree.open_containing(file_list[0])[0]
58
for filename in file_list:
60
new_list.append(tree.relpath(filename))
61
except NotBranchError:
62
raise FileInWrongBranch(tree.branch, filename)
66
# TODO: Make sure no commands unconditionally use the working directory as a
67
# branch. If a filename argument is used, the first of them should be used to
68
# specify the branch. (Perhaps this can be factored out into some kind of
69
# Argument class, representing a file in a branch, where the first occurrence
72
class cmd_status(Command):
73
"""Display status summary.
75
This reports on versioned and unknown files, reporting them
76
grouped by state. Possible states are:
79
Versioned in the working copy but not in the previous revision.
82
Versioned in the previous revision but removed or deleted
86
Path of this file changed from the previous revision;
87
the text may also have changed. This includes files whose
88
parent directory was renamed.
91
Text has changed since the previous revision.
94
Nothing about this file has changed since the previous revision.
95
Only shown with --all.
98
Not versioned and not matching an ignore pattern.
100
To see ignored files use 'bzr ignored'. For details in the
101
changes to file texts, use 'bzr diff'.
103
If no arguments are specified, the status of the entire working
104
directory is shown. Otherwise, only the status of the specified
105
files or directories is reported. If a directory is given, status
106
is reported for everything inside that directory.
108
If a revision argument is given, the status is calculated against
109
that revision, or between two revisions if two are provided.
112
# TODO: --no-recurse, --recurse options
114
takes_args = ['file*']
115
takes_options = ['all', 'show-ids', 'revision']
116
aliases = ['st', 'stat']
119
def run(self, all=False, show_ids=False, file_list=None, revision=None):
120
tree, file_list = tree_files(file_list)
122
from bzrlib.status import show_status
123
show_status(tree.branch, show_unchanged=all, show_ids=show_ids,
124
specific_files=file_list, revision=revision)
127
class cmd_cat_revision(Command):
128
"""Write out metadata for a revision.
130
The revision to print can either be specified by a specific
131
revision identifier, or you can use --revision.
135
takes_args = ['revision_id?']
136
takes_options = ['revision']
139
def run(self, revision_id=None, revision=None):
141
if revision_id is not None and revision is not None:
142
raise BzrCommandError('You can only supply one of revision_id or --revision')
143
if revision_id is None and revision is None:
144
raise BzrCommandError('You must supply either --revision or a revision_id')
145
b = WorkingTree.open_containing(u'.')[0].branch
146
if revision_id is not None:
147
sys.stdout.write(b.get_revision_xml(revision_id))
148
elif revision is not None:
151
raise BzrCommandError('You cannot specify a NULL revision.')
152
revno, rev_id = rev.in_history(b)
153
sys.stdout.write(b.get_revision_xml(rev_id))
156
class cmd_revno(Command):
157
"""Show current revision number.
159
This is equal to the number of revisions on this branch."""
162
print Branch.open_containing(u'.')[0].revno()
165
class cmd_revision_info(Command):
166
"""Show revision number and revision id for a given revision identifier.
169
takes_args = ['revision_info*']
170
takes_options = ['revision']
172
def run(self, revision=None, revision_info_list=[]):
175
if revision is not None:
176
revs.extend(revision)
177
if revision_info_list is not None:
178
for rev in revision_info_list:
179
revs.append(RevisionSpec(rev))
181
raise BzrCommandError('You must supply a revision identifier')
183
b = WorkingTree.open_containing(u'.')[0].branch
186
revinfo = rev.in_history(b)
187
if revinfo.revno is None:
188
print ' %s' % revinfo.rev_id
190
print '%4d %s' % (revinfo.revno, revinfo.rev_id)
193
class cmd_add(Command):
194
"""Add specified files or directories.
196
In non-recursive mode, all the named items are added, regardless
197
of whether they were previously ignored. A warning is given if
198
any of the named files are already versioned.
200
In recursive mode (the default), files are treated the same way
201
but the behaviour for directories is different. Directories that
202
are already versioned do not give a warning. All directories,
203
whether already versioned or not, are searched for files or
204
subdirectories that are neither versioned or ignored, and these
205
are added. This search proceeds recursively into versioned
206
directories. If no names are given '.' is assumed.
208
Therefore simply saying 'bzr add' will version all files that
209
are currently unknown.
211
Adding a file whose parent directory is not versioned will
212
implicitly add the parent, and so on up to the root. This means
213
you should never need to explictly add a directory, they'll just
214
get added when you add a file in the directory.
216
takes_args = ['file*']
217
takes_options = ['no-recurse']
219
def run(self, file_list, no_recurse=False):
220
from bzrlib.add import smart_add, add_reporter_print, add_reporter_null
222
reporter = add_reporter_null
224
reporter = add_reporter_print
225
smart_add(file_list, not no_recurse, reporter)
228
class cmd_mkdir(Command):
229
"""Create a new versioned directory.
231
This is equivalent to creating the directory and then adding it.
233
takes_args = ['dir+']
235
def run(self, dir_list):
238
wt, dd = WorkingTree.open_containing(d)
243
class cmd_relpath(Command):
244
"""Show path of a file relative to root"""
245
takes_args = ['filename']
249
def run(self, filename):
250
tree, relpath = WorkingTree.open_containing(filename)
254
class cmd_inventory(Command):
255
"""Show inventory of the current working copy or a revision.
257
It is possible to limit the output to a particular entry
258
type using the --kind option. For example; --kind file.
260
takes_options = ['revision', 'show-ids', 'kind']
263
def run(self, revision=None, show_ids=False, kind=None):
264
if kind and kind not in ['file', 'directory', 'symlink']:
265
raise BzrCommandError('invalid kind specified')
266
tree = WorkingTree.open_containing(u'.')[0]
268
inv = tree.read_working_inventory()
270
if len(revision) > 1:
271
raise BzrCommandError('bzr inventory --revision takes'
272
' exactly one revision identifier')
273
inv = tree.branch.get_revision_inventory(
274
revision[0].in_history(tree.branch).rev_id)
276
for path, entry in inv.entries():
277
if kind and kind != entry.kind:
280
print '%-50s %s' % (path, entry.file_id)
285
class cmd_move(Command):
286
"""Move files to a different directory.
291
The destination must be a versioned directory in the same branch.
293
takes_args = ['source$', 'dest']
294
def run(self, source_list, dest):
295
tree, source_list = tree_files(source_list)
296
# TODO: glob expansion on windows?
297
tree.move(source_list, tree.relpath(dest))
300
class cmd_rename(Command):
301
"""Change the name of an entry.
304
bzr rename frob.c frobber.c
305
bzr rename src/frob.c lib/frob.c
307
It is an error if the destination name exists.
309
See also the 'move' command, which moves files into a different
310
directory without changing their name.
312
# TODO: Some way to rename multiple files without invoking
313
# bzr for each one?"""
314
takes_args = ['from_name', 'to_name']
316
def run(self, from_name, to_name):
317
tree, (from_name, to_name) = tree_files((from_name, to_name))
318
tree.rename_one(from_name, to_name)
321
class cmd_mv(Command):
322
"""Move or rename a file.
325
bzr mv OLDNAME NEWNAME
326
bzr mv SOURCE... DESTINATION
328
If the last argument is a versioned directory, all the other names
329
are moved into it. Otherwise, there must be exactly two arguments
330
and the file is changed to a new name, which must not already exist.
332
Files cannot be moved between branches.
334
takes_args = ['names*']
335
def run(self, names_list):
336
if len(names_list) < 2:
337
raise BzrCommandError("missing file argument")
338
tree, rel_names = tree_files(names_list)
340
if os.path.isdir(names_list[-1]):
341
# move into existing directory
342
for pair in tree.move(rel_names[:-1], rel_names[-1]):
343
print "%s => %s" % pair
345
if len(names_list) != 2:
346
raise BzrCommandError('to mv multiple files the destination '
347
'must be a versioned directory')
348
tree.rename_one(rel_names[0], rel_names[1])
349
print "%s => %s" % (rel_names[0], rel_names[1])
352
class cmd_pull(Command):
353
"""Pull any changes from another branch into the current one.
355
If there is no default location set, the first pull will set it. After
356
that, you can omit the location to use the default. To change the
357
default, use --remember.
359
This command only works on branches that have not diverged. Branches are
360
considered diverged if both branches have had commits without first
361
pulling from the other.
363
If branches have diverged, you can use 'bzr merge' to pull the text changes
364
from one into the other. Once one branch has merged, the other should
365
be able to pull it again.
367
If you want to forget your local changes and just update your branch to
368
match the remote one, use --overwrite.
370
takes_options = ['remember', 'overwrite', 'verbose']
371
takes_args = ['location?']
373
def run(self, location=None, remember=False, overwrite=False, verbose=False):
374
from bzrlib.merge import merge
375
from shutil import rmtree
377
# FIXME: too much stuff is in the command class
378
tree_to = WorkingTree.open_containing(u'.')[0]
379
stored_loc = tree_to.branch.get_parent()
381
if stored_loc is None:
382
raise BzrCommandError("No pull location known or specified.")
384
print "Using saved location: %s" % stored_loc
385
location = stored_loc
386
br_from = Branch.open(location)
387
br_to = tree_to.branch
389
old_rh = br_to.revision_history()
390
count = tree_to.pull(br_from, overwrite)
391
except DivergedBranches:
392
# FIXME: Just make DivergedBranches display the right message
394
raise BzrCommandError("These branches have diverged."
396
if br_to.get_parent() is None or remember:
397
br_to.set_parent(location)
398
note('%d revision(s) pulled.' % (count,))
401
new_rh = tree_to.branch.revision_history()
404
from bzrlib.log import show_changed_revisions
405
show_changed_revisions(tree_to.branch, old_rh, new_rh)
408
class cmd_push(Command):
409
"""Push this branch into another branch.
411
The remote branch will not have its working tree populated because this
412
is both expensive, and may not be supported on the remote file system.
414
Some smart servers or protocols *may* put the working tree in place.
416
If there is no default push location set, the first push will set it.
417
After that, you can omit the location to use the default. To change the
418
default, use --remember.
420
This command only works on branches that have not diverged. Branches are
421
considered diverged if the branch being pushed to is not an older version
424
If branches have diverged, you can use 'bzr push --overwrite' to replace
425
the other branch completely.
427
If you want to ensure you have the different changes in the other branch,
428
do a merge (see bzr help merge) from the other branch, and commit that
429
before doing a 'push --overwrite'.
431
takes_options = ['remember', 'overwrite',
432
Option('create-prefix',
433
help='Create the path leading up to the branch '
434
'if it does not already exist')]
435
takes_args = ['location?']
437
def run(self, location=None, remember=False, overwrite=False,
438
create_prefix=False, verbose=False):
439
# FIXME: Way too big! Put this into a function called from the
442
from shutil import rmtree
443
from bzrlib.transport import get_transport
445
tree_from = WorkingTree.open_containing(u'.')[0]
446
br_from = tree_from.branch
447
stored_loc = tree_from.branch.get_push_location()
449
if stored_loc is None:
450
raise BzrCommandError("No push location known or specified.")
452
print "Using saved location: %s" % stored_loc
453
location = stored_loc
455
br_to = Branch.open(location)
456
except NotBranchError:
458
transport = get_transport(location).clone('..')
459
if not create_prefix:
461
transport.mkdir(transport.relpath(location))
463
raise BzrCommandError("Parent directory of %s "
464
"does not exist." % location)
466
current = transport.base
467
needed = [(transport, transport.relpath(location))]
470
transport, relpath = needed[-1]
471
transport.mkdir(relpath)
474
new_transport = transport.clone('..')
475
needed.append((new_transport,
476
new_transport.relpath(transport.base)))
477
if new_transport.base == transport.base:
478
raise BzrCommandError("Could not creeate "
480
br_to = Branch.initialize(location)
482
old_rh = br_to.revision_history()
483
count = br_to.pull(br_from, overwrite)
484
except DivergedBranches:
485
raise BzrCommandError("These branches have diverged."
486
" Try a merge then push with overwrite.")
487
if br_from.get_push_location() is None or remember:
488
br_from.set_push_location(location)
489
note('%d revision(s) pushed.' % (count,))
492
new_rh = br_to.revision_history()
495
from bzrlib.log import show_changed_revisions
496
show_changed_revisions(br_to, old_rh, new_rh)
499
class cmd_branch(Command):
500
"""Create a new copy of a branch.
502
If the TO_LOCATION is omitted, the last component of the FROM_LOCATION will
503
be used. In other words, "branch ../foo/bar" will attempt to create ./bar.
505
To retrieve the branch as of a particular revision, supply the --revision
506
parameter, as in "branch foo/bar -r 5".
508
--basis is to speed up branching from remote branches. When specified, it
509
copies all the file-contents, inventory and revision data from the basis
510
branch before copying anything from the remote branch.
512
takes_args = ['from_location', 'to_location?']
513
takes_options = ['revision', 'basis']
514
aliases = ['get', 'clone']
516
def run(self, from_location, to_location=None, revision=None, basis=None):
517
from bzrlib.clone import copy_branch
519
from shutil import rmtree
522
elif len(revision) > 1:
523
raise BzrCommandError(
524
'bzr branch --revision takes exactly 1 revision value')
526
br_from = Branch.open(from_location)
528
if e.errno == errno.ENOENT:
529
raise BzrCommandError('Source location "%s" does not'
530
' exist.' % to_location)
535
if basis is not None:
536
basis_branch = WorkingTree.open_containing(basis)[0].branch
539
if len(revision) == 1 and revision[0] is not None:
540
revision_id = revision[0].in_history(br_from)[1]
543
if to_location is None:
544
to_location = os.path.basename(from_location.rstrip("/\\"))
547
name = os.path.basename(to_location) + '\n'
549
os.mkdir(to_location)
551
if e.errno == errno.EEXIST:
552
raise BzrCommandError('Target directory "%s" already'
553
' exists.' % to_location)
554
if e.errno == errno.ENOENT:
555
raise BzrCommandError('Parent of "%s" does not exist.' %
560
copy_branch(br_from, to_location, revision_id, basis_branch)
561
except bzrlib.errors.NoSuchRevision:
563
msg = "The branch %s has no revision %s." % (from_location, revision[0])
564
raise BzrCommandError(msg)
565
except bzrlib.errors.UnlistableBranch:
567
msg = "The branch %s cannot be used as a --basis"
568
raise BzrCommandError(msg)
569
branch = Branch.open(to_location)
571
name = StringIO(name)
572
branch.put_controlfile('branch-name', name)
573
note('Branched %d revision(s).' % branch.revno())
578
class cmd_renames(Command):
579
"""Show list of renamed files.
581
# TODO: Option to show renames between two historical versions.
583
# TODO: Only show renames under dir, rather than in the whole branch.
584
takes_args = ['dir?']
587
def run(self, dir=u'.'):
588
tree = WorkingTree.open_containing(dir)[0]
589
old_inv = tree.branch.basis_tree().inventory
590
new_inv = tree.read_working_inventory()
592
renames = list(bzrlib.tree.find_renames(old_inv, new_inv))
594
for old_name, new_name in renames:
595
print "%s => %s" % (old_name, new_name)
598
class cmd_info(Command):
599
"""Show statistical information about a branch."""
600
takes_args = ['branch?']
603
def run(self, branch=None):
605
b = WorkingTree.open_containing(branch)[0].branch
609
class cmd_remove(Command):
610
"""Make a file unversioned.
612
This makes bzr stop tracking changes to a versioned file. It does
613
not delete the working copy.
615
takes_args = ['file+']
616
takes_options = ['verbose']
619
def run(self, file_list, verbose=False):
620
tree, file_list = tree_files(file_list)
621
tree.remove(file_list, verbose=verbose)
624
class cmd_file_id(Command):
625
"""Print file_id of a particular file or directory.
627
The file_id is assigned when the file is first added and remains the
628
same through all revisions where the file exists, even when it is
632
takes_args = ['filename']
634
def run(self, filename):
635
tree, relpath = WorkingTree.open_containing(filename)
636
i = tree.inventory.path2id(relpath)
638
raise BzrError("%r is not a versioned file" % filename)
643
class cmd_file_path(Command):
644
"""Print path of file_ids to a file or directory.
646
This prints one line for each directory down to the target,
647
starting at the branch root."""
649
takes_args = ['filename']
651
def run(self, filename):
652
tree, relpath = WorkingTree.open_containing(filename)
654
fid = inv.path2id(relpath)
656
raise BzrError("%r is not a versioned file" % filename)
657
for fip in inv.get_idpath(fid):
661
class cmd_revision_history(Command):
662
"""Display list of revision ids on this branch."""
666
branch = WorkingTree.open_containing(u'.')[0].branch
667
for patchid in branch.revision_history():
671
class cmd_ancestry(Command):
672
"""List all revisions merged into this branch."""
676
tree = WorkingTree.open_containing(u'.')[0]
678
# FIXME. should be tree.last_revision
679
for revision_id in b.get_ancestry(b.last_revision()):
683
class cmd_init(Command):
684
"""Make a directory into a versioned branch.
686
Use this to create an empty branch, or before importing an
689
Recipe for importing a tree of files:
694
bzr commit -m 'imported project'
696
takes_args = ['location?']
697
def run(self, location=None):
698
from bzrlib.branch import Branch
702
# The path has to exist to initialize a
703
# branch inside of it.
704
# Just using os.mkdir, since I don't
705
# believe that we want to create a bunch of
706
# locations if the user supplies an extended path
707
if not os.path.exists(location):
709
Branch.initialize(location)
712
class cmd_diff(Command):
713
"""Show differences in working tree.
715
If files are listed, only the changes in those files are listed.
716
Otherwise, all changes for the tree are listed.
723
# TODO: Allow diff across branches.
724
# TODO: Option to use external diff command; could be GNU diff, wdiff,
725
# or a graphical diff.
727
# TODO: Python difflib is not exactly the same as unidiff; should
728
# either fix it up or prefer to use an external diff.
730
# TODO: If a directory is given, diff everything under that.
732
# TODO: Selected-file diff is inefficient and doesn't show you
735
# TODO: This probably handles non-Unix newlines poorly.
737
takes_args = ['file*']
738
takes_options = ['revision', 'diff-options']
739
aliases = ['di', 'dif']
742
def run(self, revision=None, file_list=None, diff_options=None):
743
from bzrlib.diff import show_diff
745
tree, file_list = internal_tree_files(file_list)
748
except FileInWrongBranch:
749
if len(file_list) != 2:
750
raise BzrCommandError("Files are in different branches")
752
b, file1 = Branch.open_containing(file_list[0])
753
b2, file2 = Branch.open_containing(file_list[1])
754
if file1 != "" or file2 != "":
755
# FIXME diff those two files. rbc 20051123
756
raise BzrCommandError("Files are in different branches")
758
if revision is not None:
760
raise BzrCommandError("Can't specify -r with two branches")
761
if len(revision) == 1:
762
return show_diff(tree.branch, revision[0], specific_files=file_list,
763
external_diff_options=diff_options)
764
elif len(revision) == 2:
765
return show_diff(tree.branch, revision[0], specific_files=file_list,
766
external_diff_options=diff_options,
767
revision2=revision[1])
769
raise BzrCommandError('bzr diff --revision takes exactly one or two revision identifiers')
772
return show_diff(b, None, specific_files=file_list,
773
external_diff_options=diff_options, b2=b2)
775
return show_diff(tree.branch, None, specific_files=file_list,
776
external_diff_options=diff_options)
779
class cmd_deleted(Command):
780
"""List files deleted in the working tree.
782
# TODO: Show files deleted since a previous revision, or
783
# between two revisions.
784
# TODO: Much more efficient way to do this: read in new
785
# directories with readdir, rather than stating each one. Same
786
# level of effort but possibly much less IO. (Or possibly not,
787
# if the directories are very large...)
789
def run(self, show_ids=False):
790
tree = WorkingTree.open_containing(u'.')[0]
791
old = tree.branch.basis_tree()
792
for path, ie in old.inventory.iter_entries():
793
if not tree.has_id(ie.file_id):
795
print '%-50s %s' % (path, ie.file_id)
800
class cmd_modified(Command):
801
"""List files modified in working tree."""
805
from bzrlib.delta import compare_trees
807
tree = WorkingTree.open_containing(u'.')[0]
808
td = compare_trees(tree.branch.basis_tree(), tree)
810
for path, id, kind, text_modified, meta_modified in td.modified:
815
class cmd_added(Command):
816
"""List files added in working tree."""
820
wt = WorkingTree.open_containing(u'.')[0]
821
basis_inv = wt.branch.basis_tree().inventory
824
if file_id in basis_inv:
826
path = inv.id2path(file_id)
827
if not os.access(b.abspath(path), os.F_OK):
833
class cmd_root(Command):
834
"""Show the tree root directory.
836
The root is the nearest enclosing directory with a .bzr control
838
takes_args = ['filename?']
840
def run(self, filename=None):
841
"""Print the branch root."""
842
tree = WorkingTree.open_containing(filename)[0]
846
class cmd_log(Command):
847
"""Show log of this branch.
849
To request a range of logs, you can use the command -r begin..end
850
-r revision requests a specific revision, -r ..end or -r begin.. are
854
# TODO: Make --revision support uuid: and hash: [future tag:] notation.
856
takes_args = ['filename?']
857
takes_options = [Option('forward',
858
help='show from oldest to newest'),
859
'timezone', 'verbose',
860
'show-ids', 'revision',
861
Option('line', help='format with one line per revision'),
864
help='show revisions whose message matches this regexp',
866
Option('short', help='use moderately short format'),
869
def run(self, filename=None, timezone='original',
878
from bzrlib.log import log_formatter, show_log
880
assert message is None or isinstance(message, basestring), \
881
"invalid message argument %r" % message
882
direction = (forward and 'forward') or 'reverse'
888
tree, fp = WorkingTree.open_containing(filename)
891
inv = tree.read_working_inventory()
892
except NotBranchError:
895
b, fp = Branch.open_containing(filename)
897
inv = b.get_inventory(b.last_revision())
899
file_id = inv.path2id(fp)
901
file_id = None # points to branch root
903
tree, relpath = WorkingTree.open_containing(u'.')
910
elif len(revision) == 1:
911
rev1 = rev2 = revision[0].in_history(b).revno
912
elif len(revision) == 2:
913
rev1 = revision[0].in_history(b).revno
914
rev2 = revision[1].in_history(b).revno
916
raise BzrCommandError('bzr log --revision takes one or two values.')
918
# By this point, the revision numbers are converted to the +ve
919
# form if they were supplied in the -ve form, so we can do
920
# this comparison in relative safety
922
(rev2, rev1) = (rev1, rev2)
924
mutter('encoding log as %r', bzrlib.user_encoding)
926
# use 'replace' so that we don't abort if trying to write out
927
# in e.g. the default C locale.
928
outf = codecs.getwriter(bzrlib.user_encoding)(sys.stdout, errors='replace')
935
lf = log_formatter(log_format,
938
show_timezone=timezone)
951
class cmd_touching_revisions(Command):
952
"""Return revision-ids which affected a particular file.
954
A more user-friendly interface is "bzr log FILE"."""
956
takes_args = ["filename"]
958
def run(self, filename):
959
tree, relpath = WorkingTree.open_containing(filename)
961
inv = tree.read_working_inventory()
962
file_id = inv.path2id(relpath)
963
for revno, revision_id, what in bzrlib.log.find_touching_revisions(b, file_id):
964
print "%6d %s" % (revno, what)
967
class cmd_ls(Command):
968
"""List files in a tree.
970
# TODO: Take a revision or remote path and list that tree instead.
972
takes_options = ['verbose', 'revision',
973
Option('non-recursive',
974
help='don\'t recurse into sub-directories'),
976
help='Print all paths from the root of the branch.'),
977
Option('unknown', help='Print unknown files'),
978
Option('versioned', help='Print versioned files'),
979
Option('ignored', help='Print ignored files'),
981
Option('null', help='Null separate the files'),
984
def run(self, revision=None, verbose=False,
985
non_recursive=False, from_root=False,
986
unknown=False, versioned=False, ignored=False,
990
raise BzrCommandError('Cannot set both --verbose and --null')
991
all = not (unknown or versioned or ignored)
993
selection = {'I':ignored, '?':unknown, 'V':versioned}
995
tree, relpath = WorkingTree.open_containing(u'.')
1000
if revision is not None:
1001
tree = tree.branch.revision_tree(
1002
revision[0].in_history(tree.branch).rev_id)
1003
for fp, fc, kind, fid, entry in tree.list_files():
1004
if fp.startswith(relpath):
1005
fp = fp[len(relpath):]
1006
if non_recursive and '/' in fp:
1008
if not all and not selection[fc]:
1011
kindch = entry.kind_character()
1012
print '%-8s %s%s' % (fc, fp, kindch)
1014
sys.stdout.write(fp)
1015
sys.stdout.write('\0')
1021
class cmd_unknowns(Command):
1022
"""List unknown files."""
1025
from bzrlib.osutils import quotefn
1026
for f in WorkingTree.open_containing(u'.')[0].unknowns():
1030
class cmd_ignore(Command):
1031
"""Ignore a command or pattern.
1033
To remove patterns from the ignore list, edit the .bzrignore file.
1035
If the pattern contains a slash, it is compared to the whole path
1036
from the branch root. Otherwise, it is compared to only the last
1037
component of the path. To match a file only in the root directory,
1040
Ignore patterns are case-insensitive on case-insensitive systems.
1042
Note: wildcards must be quoted from the shell on Unix.
1045
bzr ignore ./Makefile
1046
bzr ignore '*.class'
1048
# TODO: Complain if the filename is absolute
1049
takes_args = ['name_pattern']
1051
def run(self, name_pattern):
1052
from bzrlib.atomicfile import AtomicFile
1055
tree, relpath = WorkingTree.open_containing(u'.')
1056
ifn = tree.abspath('.bzrignore')
1058
if os.path.exists(ifn):
1061
igns = f.read().decode('utf-8')
1067
# TODO: If the file already uses crlf-style termination, maybe
1068
# we should use that for the newly added lines?
1070
if igns and igns[-1] != '\n':
1072
igns += name_pattern + '\n'
1075
f = AtomicFile(ifn, 'wt')
1076
f.write(igns.encode('utf-8'))
1081
inv = tree.inventory
1082
if inv.path2id('.bzrignore'):
1083
mutter('.bzrignore is already versioned')
1085
mutter('need to make new .bzrignore file versioned')
1086
tree.add(['.bzrignore'])
1089
class cmd_ignored(Command):
1090
"""List ignored files and the patterns that matched them.
1092
See also: bzr ignore"""
1095
tree = WorkingTree.open_containing(u'.')[0]
1096
for path, file_class, kind, file_id, entry in tree.list_files():
1097
if file_class != 'I':
1099
## XXX: Slightly inefficient since this was already calculated
1100
pat = tree.is_ignored(path)
1101
print '%-50s %s' % (path, pat)
1104
class cmd_lookup_revision(Command):
1105
"""Lookup the revision-id from a revision-number
1108
bzr lookup-revision 33
1111
takes_args = ['revno']
1114
def run(self, revno):
1118
raise BzrCommandError("not a valid revision-number: %r" % revno)
1120
print WorkingTree.open_containing(u'.')[0].branch.get_rev_id(revno)
1123
class cmd_export(Command):
1124
"""Export past revision to destination directory.
1126
If no revision is specified this exports the last committed revision.
1128
Format may be an "exporter" name, such as tar, tgz, tbz2. If none is
1129
given, try to find the format with the extension. If no extension
1130
is found exports to a directory (equivalent to --format=dir).
1132
Root may be the top directory for tar, tgz and tbz2 formats. If none
1133
is given, the top directory will be the root name of the file.
1135
Note: export of tree with non-ascii filenames to zip is not supported.
1137
Supported formats Autodetected by extension
1138
----------------- -------------------------
1141
tbz2 .tar.bz2, .tbz2
1145
takes_args = ['dest']
1146
takes_options = ['revision', 'format', 'root']
1147
def run(self, dest, revision=None, format=None, root=None):
1149
from bzrlib.export import export
1150
tree = WorkingTree.open_containing(u'.')[0]
1152
if revision is None:
1153
# should be tree.last_revision FIXME
1154
rev_id = b.last_revision()
1156
if len(revision) != 1:
1157
raise BzrError('bzr export --revision takes exactly 1 argument')
1158
rev_id = revision[0].in_history(b).rev_id
1159
t = b.revision_tree(rev_id)
1161
export(t, dest, format, root)
1162
except errors.NoSuchExportFormat, e:
1163
raise BzrCommandError('Unsupported export format: %s' % e.format)
1166
class cmd_cat(Command):
1167
"""Write a file's text from a previous revision."""
1169
takes_options = ['revision']
1170
takes_args = ['filename']
1173
def run(self, filename, revision=None):
1174
if revision is None:
1175
raise BzrCommandError("bzr cat requires a revision number")
1176
elif len(revision) != 1:
1177
raise BzrCommandError("bzr cat --revision takes exactly one number")
1180
tree, relpath = WorkingTree.open_containing(filename)
1182
except NotBranchError:
1185
b, relpath = Branch.open_containing(filename)
1186
b.print_file(relpath, revision[0].in_history(b).revno)
1189
class cmd_local_time_offset(Command):
1190
"""Show the offset in seconds from GMT to local time."""
1194
print bzrlib.osutils.local_time_offset()
1198
class cmd_commit(Command):
1199
"""Commit changes into a new revision.
1201
If no arguments are given, the entire tree is committed.
1203
If selected files are specified, only changes to those files are
1204
committed. If a directory is specified then the directory and everything
1205
within it is committed.
1207
A selected-file commit may fail in some cases where the committed
1208
tree would be invalid, such as trying to commit a file in a
1209
newly-added directory that is not itself committed.
1211
# TODO: Run hooks on tree to-be-committed, and after commit.
1213
# TODO: Strict commit that fails if there are deleted files.
1214
# (what does "deleted files" mean ??)
1216
# TODO: Give better message for -s, --summary, used by tla people
1218
# XXX: verbose currently does nothing
1220
takes_args = ['selected*']
1221
takes_options = ['message', 'verbose',
1223
help='commit even if nothing has changed'),
1224
Option('file', type=str,
1226
help='file containing commit message'),
1228
help="refuse to commit if there are unknown "
1229
"files in the working tree."),
1231
aliases = ['ci', 'checkin']
1233
def run(self, message=None, file=None, verbose=True, selected_list=None,
1234
unchanged=False, strict=False):
1235
from bzrlib.errors import (PointlessCommit, ConflictsInTree,
1237
from bzrlib.msgeditor import edit_commit_message
1238
from bzrlib.status import show_status
1239
from tempfile import TemporaryFile
1242
# TODO: do more checks that the commit will succeed before
1243
# spending the user's valuable time typing a commit message.
1245
# TODO: if the commit *does* happen to fail, then save the commit
1246
# message to a temporary file where it can be recovered
1247
tree, selected_list = tree_files(selected_list)
1248
if message is None and not file:
1249
template = make_commit_message_template(tree)
1250
message = edit_commit_message(template)
1252
raise BzrCommandError("please specify a commit message"
1253
" with either --message or --file")
1254
elif message and file:
1255
raise BzrCommandError("please specify either --message or --file")
1259
message = codecs.open(file, 'rt', bzrlib.user_encoding).read()
1262
raise BzrCommandError("empty commit message specified")
1265
tree.commit(message, specific_files=selected_list,
1266
allow_pointless=unchanged, strict=strict)
1267
except PointlessCommit:
1268
# FIXME: This should really happen before the file is read in;
1269
# perhaps prepare the commit; get the message; then actually commit
1270
raise BzrCommandError("no changes to commit",
1271
["use --unchanged to commit anyhow"])
1272
except ConflictsInTree:
1273
raise BzrCommandError("Conflicts detected in working tree. "
1274
'Use "bzr conflicts" to list, "bzr resolve FILE" to resolve.')
1275
except StrictCommitFailed:
1276
raise BzrCommandError("Commit refused because there are unknown "
1277
"files in the working tree.")
1278
note('Committed revision %d.' % (tree.branch.revno(),))
1281
class cmd_check(Command):
1282
"""Validate consistency of branch history.
1284
This command checks various invariants about the branch storage to
1285
detect data corruption or bzr bugs.
1287
takes_args = ['branch?']
1288
takes_options = ['verbose']
1290
def run(self, branch=None, verbose=False):
1291
from bzrlib.check import check
1293
tree = WorkingTree.open_containing()[0]
1294
branch = tree.branch
1296
branch = Branch.open(branch)
1297
check(branch, verbose)
1300
class cmd_scan_cache(Command):
1303
from bzrlib.hashcache import HashCache
1309
print '%6d stats' % c.stat_count
1310
print '%6d in hashcache' % len(c._cache)
1311
print '%6d files removed from cache' % c.removed_count
1312
print '%6d hashes updated' % c.update_count
1313
print '%6d files changed too recently to cache' % c.danger_count
1320
class cmd_upgrade(Command):
1321
"""Upgrade branch storage to current format.
1323
The check command or bzr developers may sometimes advise you to run
1326
This version of this command upgrades from the full-text storage
1327
used by bzr 0.0.8 and earlier to the weave format (v5).
1329
takes_args = ['dir?']
1331
def run(self, dir=u'.'):
1332
from bzrlib.upgrade import upgrade
1336
class cmd_whoami(Command):
1337
"""Show bzr user id."""
1338
takes_options = ['email']
1341
def run(self, email=False):
1343
b = WorkingTree.open_containing(u'.')[0].branch
1344
config = bzrlib.config.BranchConfig(b)
1345
except NotBranchError:
1346
config = bzrlib.config.GlobalConfig()
1349
print config.user_email()
1351
print config.username()
1353
class cmd_nick(Command):
1355
Print or set the branch nickname.
1356
If unset, the tree root directory name is used as the nickname
1357
To print the current nickname, execute with no argument.
1359
takes_args = ['nickname?']
1360
def run(self, nickname=None):
1361
branch = Branch.open_containing(u'.')[0]
1362
if nickname is None:
1363
self.printme(branch)
1365
branch.nick = nickname
1368
def printme(self, branch):
1371
class cmd_selftest(Command):
1372
"""Run internal test suite.
1374
This creates temporary test directories in the working directory,
1375
but not existing data is affected. These directories are deleted
1376
if the tests pass, or left behind to help in debugging if they
1377
fail and --keep-output is specified.
1379
If arguments are given, they are regular expressions that say
1380
which tests should run.
1382
# TODO: --list should give a list of all available tests
1384
takes_args = ['testspecs*']
1385
takes_options = ['verbose',
1386
Option('one', help='stop when one test fails'),
1387
Option('keep-output',
1388
help='keep output directories when tests fail')
1391
def run(self, testspecs_list=None, verbose=False, one=False,
1394
from bzrlib.tests import selftest
1395
# we don't want progress meters from the tests to go to the
1396
# real output; and we don't want log messages cluttering up
1398
save_ui = bzrlib.ui.ui_factory
1399
bzrlib.trace.info('running tests...')
1401
bzrlib.ui.ui_factory = bzrlib.ui.SilentUIFactory()
1402
if testspecs_list is not None:
1403
pattern = '|'.join(testspecs_list)
1406
result = selftest(verbose=verbose,
1408
stop_on_failure=one,
1409
keep_output=keep_output)
1411
bzrlib.trace.info('tests passed')
1413
bzrlib.trace.info('tests failed')
1414
return int(not result)
1416
bzrlib.ui.ui_factory = save_ui
1420
print "bzr (bazaar-ng) %s" % bzrlib.__version__
1421
# is bzrlib itself in a branch?
1422
bzrrev = bzrlib.get_bzr_revision()
1424
print " (bzr checkout, revision %d {%s})" % bzrrev
1425
print bzrlib.__copyright__
1426
print "http://bazaar-ng.org/"
1428
print "bzr comes with ABSOLUTELY NO WARRANTY. bzr is free software, and"
1429
print "you may use, modify and redistribute it under the terms of the GNU"
1430
print "General Public License version 2 or later."
1433
class cmd_version(Command):
1434
"""Show version of bzr."""
1439
class cmd_rocks(Command):
1440
"""Statement of optimism."""
1444
print "it sure does!"
1447
class cmd_find_merge_base(Command):
1448
"""Find and print a base revision for merging two branches.
1450
# TODO: Options to specify revisions on either side, as if
1451
# merging only part of the history.
1452
takes_args = ['branch', 'other']
1456
def run(self, branch, other):
1457
from bzrlib.revision import common_ancestor, MultipleRevisionSources
1459
branch1 = Branch.open_containing(branch)[0]
1460
branch2 = Branch.open_containing(other)[0]
1462
history_1 = branch1.revision_history()
1463
history_2 = branch2.revision_history()
1465
last1 = branch1.last_revision()
1466
last2 = branch2.last_revision()
1468
source = MultipleRevisionSources(branch1, branch2)
1470
base_rev_id = common_ancestor(last1, last2, source)
1472
print 'merge base is revision %s' % base_rev_id
1476
if base_revno is None:
1477
raise bzrlib.errors.UnrelatedBranches()
1479
print ' r%-6d in %s' % (base_revno, branch)
1481
other_revno = branch2.revision_id_to_revno(base_revid)
1483
print ' r%-6d in %s' % (other_revno, other)
1487
class cmd_merge(Command):
1488
"""Perform a three-way merge.
1490
The branch is the branch you will merge from. By default, it will
1491
merge the latest revision. If you specify a revision, that
1492
revision will be merged. If you specify two revisions, the first
1493
will be used as a BASE, and the second one as OTHER. Revision
1494
numbers are always relative to the specified branch.
1496
By default bzr will try to merge in all new work from the other
1497
branch, automatically determining an appropriate base. If this
1498
fails, you may need to give an explicit base.
1502
To merge the latest revision from bzr.dev
1503
bzr merge ../bzr.dev
1505
To merge changes up to and including revision 82 from bzr.dev
1506
bzr merge -r 82 ../bzr.dev
1508
To merge the changes introduced by 82, without previous changes:
1509
bzr merge -r 81..82 ../bzr.dev
1511
merge refuses to run if there are any uncommitted changes, unless
1514
takes_args = ['branch?']
1515
takes_options = ['revision', 'force', 'merge-type', 'reprocess',
1516
Option('show-base', help="Show base revision text in "
1519
def run(self, branch=None, revision=None, force=False, merge_type=None,
1520
show_base=False, reprocess=False):
1521
from bzrlib.merge import merge
1522
from bzrlib.merge_core import ApplyMerge3
1523
if merge_type is None:
1524
merge_type = ApplyMerge3
1526
branch = WorkingTree.open_containing(u'.')[0].branch.get_parent()
1528
raise BzrCommandError("No merge location known or specified.")
1530
print "Using saved location: %s" % branch
1531
if revision is None or len(revision) < 1:
1533
other = [branch, -1]
1535
if len(revision) == 1:
1537
other_branch = Branch.open_containing(branch)[0]
1538
revno = revision[0].in_history(other_branch).revno
1539
other = [branch, revno]
1541
assert len(revision) == 2
1542
if None in revision:
1543
raise BzrCommandError(
1544
"Merge doesn't permit that revision specifier.")
1545
b = Branch.open_containing(branch)[0]
1547
base = [branch, revision[0].in_history(b).revno]
1548
other = [branch, revision[1].in_history(b).revno]
1551
conflict_count = merge(other, base, check_clean=(not force),
1552
merge_type=merge_type, reprocess=reprocess,
1553
show_base=show_base)
1554
if conflict_count != 0:
1558
except bzrlib.errors.AmbiguousBase, e:
1559
m = ("sorry, bzr can't determine the right merge base yet\n"
1560
"candidates are:\n "
1561
+ "\n ".join(e.bases)
1563
"please specify an explicit base with -r,\n"
1564
"and (if you want) report this to the bzr developers\n")
1568
class cmd_remerge(Command):
1571
takes_args = ['file*']
1572
takes_options = ['merge-type', 'reprocess',
1573
Option('show-base', help="Show base revision text in "
1576
def run(self, file_list=None, merge_type=None, show_base=False,
1578
from bzrlib.merge import merge_inner, transform_tree
1579
from bzrlib.merge_core import ApplyMerge3
1580
if merge_type is None:
1581
merge_type = ApplyMerge3
1582
tree, file_list = tree_files(file_list)
1585
pending_merges = tree.pending_merges()
1586
if len(pending_merges) != 1:
1587
raise BzrCommandError("Sorry, remerge only works after normal"
1588
+ " merges. Not cherrypicking or"
1590
base_revision = common_ancestor(tree.branch.last_revision(),
1591
pending_merges[0], tree.branch)
1592
base_tree = tree.branch.revision_tree(base_revision)
1593
other_tree = tree.branch.revision_tree(pending_merges[0])
1594
interesting_ids = None
1595
if file_list is not None:
1596
interesting_ids = set()
1597
for filename in file_list:
1598
file_id = tree.path2id(filename)
1599
interesting_ids.add(file_id)
1600
if tree.kind(file_id) != "directory":
1603
for name, ie in tree.inventory.iter_entries(file_id):
1604
interesting_ids.add(ie.file_id)
1605
transform_tree(tree, tree.branch.basis_tree(), interesting_ids)
1606
if file_list is None:
1607
restore_files = list(tree.iter_conflicts())
1609
restore_files = file_list
1610
for filename in restore_files:
1612
restore(tree.abspath(filename))
1613
except NotConflicted:
1615
conflicts = merge_inner(tree.branch, other_tree, base_tree,
1616
interesting_ids = interesting_ids,
1617
other_rev_id=pending_merges[0],
1618
merge_type=merge_type,
1619
show_base=show_base,
1620
reprocess=reprocess)
1628
class cmd_revert(Command):
1629
"""Reverse all changes since the last commit.
1631
Only versioned files are affected. Specify filenames to revert only
1632
those files. By default, any files that are changed will be backed up
1633
first. Backup files have a '~' appended to their name.
1635
takes_options = ['revision', 'no-backup']
1636
takes_args = ['file*']
1637
aliases = ['merge-revert']
1639
def run(self, revision=None, no_backup=False, file_list=None):
1640
from bzrlib.merge import merge_inner
1641
from bzrlib.commands import parse_spec
1642
if file_list is not None:
1643
if len(file_list) == 0:
1644
raise BzrCommandError("No files specified")
1647
if revision is None:
1649
tree = WorkingTree.open_containing(u'.')[0]
1650
# FIXME should be tree.last_revision
1651
rev_id = tree.branch.last_revision()
1652
elif len(revision) != 1:
1653
raise BzrCommandError('bzr revert --revision takes exactly 1 argument')
1655
tree, file_list = tree_files(file_list)
1656
rev_id = revision[0].in_history(tree.branch).rev_id
1657
tree.revert(file_list, tree.branch.revision_tree(rev_id),
1661
class cmd_assert_fail(Command):
1662
"""Test reporting of assertion failures"""
1665
assert False, "always fails"
1668
class cmd_help(Command):
1669
"""Show help on a command or other topic.
1671
For a list of all available commands, say 'bzr help commands'."""
1672
takes_options = ['long']
1673
takes_args = ['topic?']
1677
def run(self, topic=None, long=False):
1679
if topic is None and long:
1684
class cmd_shell_complete(Command):
1685
"""Show appropriate completions for context.
1687
For a list of all available commands, say 'bzr shell-complete'."""
1688
takes_args = ['context?']
1693
def run(self, context=None):
1694
import shellcomplete
1695
shellcomplete.shellcomplete(context)
1698
class cmd_fetch(Command):
1699
"""Copy in history from another branch but don't merge it.
1701
This is an internal method used for pull and merge."""
1703
takes_args = ['from_branch', 'to_branch']
1704
def run(self, from_branch, to_branch):
1705
from bzrlib.fetch import Fetcher
1706
from bzrlib.branch import Branch
1707
from_b = Branch.open(from_branch)
1708
to_b = Branch.open(to_branch)
1713
Fetcher(to_b, from_b)
1720
class cmd_missing(Command):
1721
"""What is missing in this branch relative to other branch.
1723
# TODO: rewrite this in terms of ancestry so that it shows only
1726
takes_args = ['remote?']
1727
aliases = ['mis', 'miss']
1728
takes_options = ['verbose']
1731
def run(self, remote=None, verbose=False):
1732
from bzrlib.errors import BzrCommandError
1733
from bzrlib.missing import show_missing
1735
if verbose and is_quiet():
1736
raise BzrCommandError('Cannot pass both quiet and verbose')
1738
tree = WorkingTree.open_containing(u'.')[0]
1739
parent = tree.branch.get_parent()
1742
raise BzrCommandError("No missing location known or specified.")
1745
print "Using last location: %s" % parent
1747
elif parent is None:
1748
# We only update parent if it did not exist, missing
1749
# should not change the parent
1750
tree.branch.set_parent(remote)
1751
br_remote = Branch.open_containing(remote)[0]
1752
return show_missing(tree.branch, br_remote, verbose=verbose,
1756
class cmd_plugins(Command):
1761
import bzrlib.plugin
1762
from inspect import getdoc
1763
for plugin in bzrlib.plugin.all_plugins:
1764
if hasattr(plugin, '__path__'):
1765
print plugin.__path__[0]
1766
elif hasattr(plugin, '__file__'):
1767
print plugin.__file__
1773
print '\t', d.split('\n')[0]
1776
class cmd_testament(Command):
1777
"""Show testament (signing-form) of a revision."""
1778
takes_options = ['revision', 'long']
1779
takes_args = ['branch?']
1781
def run(self, branch=u'.', revision=None, long=False):
1782
from bzrlib.testament import Testament
1783
b = WorkingTree.open_containing(branch)[0].branch
1786
if revision is None:
1787
rev_id = b.last_revision()
1789
rev_id = revision[0].in_history(b).rev_id
1790
t = Testament.from_revision(b, rev_id)
1792
sys.stdout.writelines(t.as_text_lines())
1794
sys.stdout.write(t.as_short_text())
1799
class cmd_annotate(Command):
1800
"""Show the origin of each line in a file.
1802
This prints out the given file with an annotation on the left side
1803
indicating which revision, author and date introduced the change.
1805
If the origin is the same for a run of consecutive lines, it is
1806
shown only at the top, unless the --all option is given.
1808
# TODO: annotate directories; showing when each file was last changed
1809
# TODO: annotate a previous version of a file
1810
# TODO: if the working copy is modified, show annotations on that
1811
# with new uncommitted lines marked
1812
aliases = ['blame', 'praise']
1813
takes_args = ['filename']
1814
takes_options = [Option('all', help='show annotations on all lines'),
1815
Option('long', help='show date in annotations'),
1819
def run(self, filename, all=False, long=False):
1820
from bzrlib.annotate import annotate_file
1821
tree, relpath = WorkingTree.open_containing(filename)
1822
branch = tree.branch
1825
file_id = tree.inventory.path2id(relpath)
1826
tree = branch.revision_tree(branch.last_revision())
1827
file_version = tree.inventory[file_id].revision
1828
annotate_file(branch, file_version, file_id, long, all, sys.stdout)
1833
class cmd_re_sign(Command):
1834
"""Create a digital signature for an existing revision."""
1835
# TODO be able to replace existing ones.
1837
hidden = True # is this right ?
1838
takes_args = ['revision_id?']
1839
takes_options = ['revision']
1841
def run(self, revision_id=None, revision=None):
1842
import bzrlib.config as config
1843
import bzrlib.gpg as gpg
1844
if revision_id is not None and revision is not None:
1845
raise BzrCommandError('You can only supply one of revision_id or --revision')
1846
if revision_id is None and revision is None:
1847
raise BzrCommandError('You must supply either --revision or a revision_id')
1848
b = WorkingTree.open_containing(u'.')[0].branch
1849
gpg_strategy = gpg.GPGStrategy(config.BranchConfig(b))
1850
if revision_id is not None:
1851
b.sign_revision(revision_id, gpg_strategy)
1852
elif revision is not None:
1853
if len(revision) == 1:
1854
revno, rev_id = revision[0].in_history(b)
1855
b.sign_revision(rev_id, gpg_strategy)
1856
elif len(revision) == 2:
1857
# are they both on rh- if so we can walk between them
1858
# might be nice to have a range helper for arbitrary
1859
# revision paths. hmm.
1860
from_revno, from_revid = revision[0].in_history(b)
1861
to_revno, to_revid = revision[1].in_history(b)
1862
if to_revid is None:
1863
to_revno = b.revno()
1864
if from_revno is None or to_revno is None:
1865
raise BzrCommandError('Cannot sign a range of non-revision-history revisions')
1866
for revno in range(from_revno, to_revno + 1):
1867
b.sign_revision(b.get_rev_id(revno), gpg_strategy)
1869
raise BzrCommandError('Please supply either one revision, or a range.')
1872
class cmd_uncommit(bzrlib.commands.Command):
1873
"""Remove the last committed revision.
1875
By supplying the --all flag, it will not only remove the entry
1876
from revision_history, but also remove all of the entries in the
1879
--verbose will print out what is being removed.
1880
--dry-run will go through all the motions, but not actually
1883
In the future, uncommit will create a changeset, which can then
1886
takes_options = ['all', 'verbose', 'revision',
1887
Option('dry-run', help='Don\'t actually make changes'),
1888
Option('force', help='Say yes to all questions.')]
1889
takes_args = ['location?']
1892
def run(self, location=None, all=False,
1893
dry_run=False, verbose=False,
1894
revision=None, force=False):
1895
from bzrlib.branch import Branch
1896
from bzrlib.log import log_formatter
1898
from bzrlib.uncommit import uncommit
1900
if location is None:
1902
b, relpath = Branch.open_containing(location)
1904
if revision is None:
1906
rev_id = b.last_revision()
1908
revno, rev_id = revision[0].in_history(b)
1910
print 'No revisions to uncommit.'
1912
for r in range(revno, b.revno()+1):
1913
rev_id = b.get_rev_id(r)
1914
lf = log_formatter('short', to_file=sys.stdout,show_timezone='original')
1915
lf.show(r, b.get_revision(rev_id), None)
1918
print 'Dry-run, pretending to remove the above revisions.'
1920
val = raw_input('Press <enter> to continue')
1922
print 'The above revision(s) will be removed.'
1924
val = raw_input('Are you sure [y/N]? ')
1925
if val.lower() not in ('y', 'yes'):
1929
uncommit(b, remove_files=all,
1930
dry_run=dry_run, verbose=verbose,
1934
# these get imported and then picked up by the scan for cmd_*
1935
# TODO: Some more consistent way to split command definitions across files;
1936
# we do need to load at least some information about them to know of
1938
from bzrlib.conflicts import cmd_resolve, cmd_conflicts, restore