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
23
from bzrlib.trace import mutter, note, log_error, warning
24
from bzrlib.errors import BzrError, BzrCheckError, BzrCommandError
25
from bzrlib.branch import find_branch
26
from bzrlib.revisionspec import RevisionSpec
27
from bzrlib import BZRDIR
28
from bzrlib.commands import Command
31
class cmd_status(Command):
32
"""Display status summary.
34
This reports on versioned and unknown files, reporting them
35
grouped by state. Possible states are:
38
Versioned in the working copy but not in the previous revision.
41
Versioned in the previous revision but removed or deleted
45
Path of this file changed from the previous revision;
46
the text may also have changed. This includes files whose
47
parent directory was renamed.
50
Text has changed since the previous revision.
53
Nothing about this file has changed since the previous revision.
54
Only shown with --all.
57
Not versioned and not matching an ignore pattern.
59
To see ignored files use 'bzr ignored'. For details in the
60
changes to file texts, use 'bzr diff'.
62
If no arguments are specified, the status of the entire working
63
directory is shown. Otherwise, only the status of the specified
64
files or directories is reported. If a directory is given, status
65
is reported for everything inside that directory.
67
If a revision is specified, the changes since that revision are shown.
69
takes_args = ['file*']
70
takes_options = ['all', 'show-ids', 'revision']
71
aliases = ['st', 'stat']
73
def run(self, all=False, show_ids=False, file_list=None):
75
b = find_branch(file_list[0])
76
file_list = [b.relpath(x) for x in file_list]
77
# special case: only one path was given and it's the root
84
from bzrlib.status import show_status
85
show_status(b, show_unchanged=all, show_ids=show_ids,
86
specific_files=file_list)
89
class cmd_cat_revision(Command):
90
"""Write out metadata for a revision."""
93
takes_args = ['revision_id']
95
def run(self, revision_id):
97
sys.stdout.write(b.get_revision_xml_file(revision_id).read())
100
class cmd_revno(Command):
101
"""Show current revision number.
103
This is equal to the number of revisions on this branch."""
105
print find_branch('.').revno()
108
class cmd_revision_info(Command):
109
"""Show revision number and revision id for a given revision identifier.
112
takes_args = ['revision_info*']
113
takes_options = ['revision']
114
def run(self, revision=None, revision_info_list=None):
115
from bzrlib.branch import find_branch
118
if revision is not None:
119
revs.extend(revision)
120
if revision_info_list is not None:
121
revs.extend(revision_info_list)
123
raise BzrCommandError('You must supply a revision identifier')
128
print '%4d %s' % RevisionSpec(b, rev)
131
class cmd_add(Command):
132
"""Add specified files or directories.
134
In non-recursive mode, all the named items are added, regardless
135
of whether they were previously ignored. A warning is given if
136
any of the named files are already versioned.
138
In recursive mode (the default), files are treated the same way
139
but the behaviour for directories is different. Directories that
140
are already versioned do not give a warning. All directories,
141
whether already versioned or not, are searched for files or
142
subdirectories that are neither versioned or ignored, and these
143
are added. This search proceeds recursively into versioned
144
directories. If no names are given '.' is assumed.
146
Therefore simply saying 'bzr add' will version all files that
147
are currently unknown.
149
TODO: Perhaps adding a file whose directly is not versioned should
150
recursively add that parent, rather than giving an error?
152
takes_args = ['file*']
153
takes_options = ['verbose', 'no-recurse']
155
def run(self, file_list, verbose=False, no_recurse=False):
156
# verbose currently has no effect
157
from bzrlib.add import smart_add, add_reporter_print
158
smart_add(file_list, not no_recurse, add_reporter_print)
162
class cmd_mkdir(Command):
163
"""Create a new versioned directory.
165
This is equivalent to creating the directory and then adding it.
167
takes_args = ['dir+']
169
def run(self, dir_list):
180
class cmd_relpath(Command):
181
"""Show path of a file relative to root"""
182
takes_args = ['filename']
185
def run(self, filename):
186
print find_branch(filename).relpath(filename)
190
class cmd_inventory(Command):
191
"""Show inventory of the current working copy or a revision."""
192
takes_options = ['revision', 'show-ids']
194
def run(self, revision=None, show_ids=False):
197
inv = b.read_working_inventory()
199
if len(revision) > 1:
200
raise BzrCommandError('bzr inventory --revision takes'
201
' exactly one revision identifier')
202
inv = b.get_revision_inventory(b.lookup_revision(revision[0]))
204
for path, entry in inv.entries():
206
print '%-50s %s' % (path, entry.file_id)
211
class cmd_move(Command):
212
"""Move files to a different directory.
217
The destination must be a versioned directory in the same branch.
219
takes_args = ['source$', 'dest']
220
def run(self, source_list, dest):
223
# TODO: glob expansion on windows?
224
b.move([b.relpath(s) for s in source_list], b.relpath(dest))
227
class cmd_rename(Command):
228
"""Change the name of an entry.
231
bzr rename frob.c frobber.c
232
bzr rename src/frob.c lib/frob.c
234
It is an error if the destination name exists.
236
See also the 'move' command, which moves files into a different
237
directory without changing their name.
239
TODO: Some way to rename multiple files without invoking bzr for each
241
takes_args = ['from_name', 'to_name']
243
def run(self, from_name, to_name):
245
b.rename_one(b.relpath(from_name), b.relpath(to_name))
249
class cmd_mv(Command):
250
"""Move or rename a file.
253
bzr mv OLDNAME NEWNAME
254
bzr mv SOURCE... DESTINATION
256
If the last argument is a versioned directory, all the other names
257
are moved into it. Otherwise, there must be exactly two arguments
258
and the file is changed to a new name, which must not already exist.
260
Files cannot be moved between branches.
262
takes_args = ['names*']
263
def run(self, names_list):
264
if len(names_list) < 2:
265
raise BzrCommandError("missing file argument")
266
b = find_branch(names_list[0])
268
rel_names = [b.relpath(x) for x in names_list]
270
if os.path.isdir(names_list[-1]):
271
# move into existing directory
272
for pair in b.move(rel_names[:-1], rel_names[-1]):
273
print "%s => %s" % pair
275
if len(names_list) != 2:
276
raise BzrCommandError('to mv multiple files the destination '
277
'must be a versioned directory')
278
for pair in b.move(rel_names[0], rel_names[1]):
279
print "%s => %s" % pair
284
class cmd_pull(Command):
285
"""Pull any changes from another branch into the current one.
287
If the location is omitted, the last-used location will be used.
288
Both the revision history and the working directory will be
291
This command only works on branches that have not diverged. Branches are
292
considered diverged if both branches have had commits without first
293
pulling from the other.
295
If branches have diverged, you can use 'bzr merge' to pull the text changes
296
from one into the other.
298
takes_args = ['location?']
300
def run(self, location=None):
301
from bzrlib.merge import merge
303
from shutil import rmtree
306
br_to = find_branch('.')
309
stored_loc = br_to.controlfile("x-pull", "rb").read().rstrip('\n')
311
if e.errno != errno.ENOENT:
314
if stored_loc is None:
315
raise BzrCommandError("No pull location known or specified.")
317
print "Using last location: %s" % stored_loc
318
location = stored_loc
319
cache_root = tempfile.mkdtemp()
320
from bzrlib.branch import DivergedBranches
321
br_from = find_branch(location)
322
location = br_from.base
323
old_revno = br_to.revno()
325
from branch import find_cached_branch, DivergedBranches
326
br_from = find_cached_branch(location, cache_root)
327
location = br_from.base
328
old_revno = br_to.revno()
330
br_to.update_revisions(br_from)
331
except DivergedBranches:
332
raise BzrCommandError("These branches have diverged."
335
merge(('.', -1), ('.', old_revno), check_clean=False)
336
if location != stored_loc:
337
br_to.controlfile("x-pull", "wb").write(location + "\n")
343
class cmd_branch(Command):
344
"""Create a new copy of a branch.
346
If the TO_LOCATION is omitted, the last component of the FROM_LOCATION will
347
be used. In other words, "branch ../foo/bar" will attempt to create ./bar.
349
To retrieve the branch as of a particular revision, supply the --revision
350
parameter, as in "branch foo/bar -r 5".
352
takes_args = ['from_location', 'to_location?']
353
takes_options = ['revision']
354
aliases = ['get', 'clone']
356
def run(self, from_location, to_location=None, revision=None):
357
from bzrlib.branch import copy_branch, find_cached_branch
360
from shutil import rmtree
361
cache_root = tempfile.mkdtemp()
365
elif len(revision) > 1:
366
raise BzrCommandError(
367
'bzr branch --revision takes exactly 1 revision value')
369
br_from = find_cached_branch(from_location, cache_root)
371
if e.errno == errno.ENOENT:
372
raise BzrCommandError('Source location "%s" does not'
373
' exist.' % to_location)
376
if to_location is None:
377
to_location = os.path.basename(from_location.rstrip("/\\"))
379
os.mkdir(to_location)
381
if e.errno == errno.EEXIST:
382
raise BzrCommandError('Target directory "%s" already'
383
' exists.' % to_location)
384
if e.errno == errno.ENOENT:
385
raise BzrCommandError('Parent of "%s" does not exist.' %
390
copy_branch(br_from, to_location, revision[0])
391
except bzrlib.errors.NoSuchRevision:
393
msg = "The branch %s has no revision %d." % (from_location, revision[0])
394
raise BzrCommandError(msg)
399
class cmd_renames(Command):
400
"""Show list of renamed files.
402
TODO: Option to show renames between two historical versions.
404
TODO: Only show renames under dir, rather than in the whole branch.
406
takes_args = ['dir?']
408
def run(self, dir='.'):
410
old_inv = b.basis_tree().inventory
411
new_inv = b.read_working_inventory()
413
renames = list(bzrlib.tree.find_renames(old_inv, new_inv))
415
for old_name, new_name in renames:
416
print "%s => %s" % (old_name, new_name)
419
class cmd_info(Command):
420
"""Show statistical information about a branch."""
421
takes_args = ['branch?']
423
def run(self, branch=None):
426
b = find_branch(branch)
430
class cmd_remove(Command):
431
"""Make a file unversioned.
433
This makes bzr stop tracking changes to a versioned file. It does
434
not delete the working copy.
436
takes_args = ['file+']
437
takes_options = ['verbose']
439
def run(self, file_list, verbose=False):
440
b = find_branch(file_list[0])
441
b.remove([b.relpath(f) for f in file_list], verbose=verbose)
444
class cmd_file_id(Command):
445
"""Print file_id of a particular file or directory.
447
The file_id is assigned when the file is first added and remains the
448
same through all revisions where the file exists, even when it is
452
takes_args = ['filename']
453
def run(self, filename):
454
b = find_branch(filename)
455
i = b.inventory.path2id(b.relpath(filename))
457
raise BzrError("%r is not a versioned file" % filename)
462
class cmd_file_path(Command):
463
"""Print path of file_ids to a file or directory.
465
This prints one line for each directory down to the target,
466
starting at the branch root."""
468
takes_args = ['filename']
469
def run(self, filename):
470
b = find_branch(filename)
472
fid = inv.path2id(b.relpath(filename))
474
raise BzrError("%r is not a versioned file" % filename)
475
for fip in inv.get_idpath(fid):
479
class cmd_revision_history(Command):
480
"""Display list of revision ids on this branch."""
483
for patchid in find_branch('.').revision_history():
487
class cmd_directories(Command):
488
"""Display list of versioned directories in this branch."""
490
for name, ie in find_branch('.').read_working_inventory().directories():
497
class cmd_init(Command):
498
"""Make a directory into a versioned branch.
500
Use this to create an empty branch, or before importing an
503
Recipe for importing a tree of files:
508
bzr commit -m 'imported project'
511
from bzrlib.branch import Branch
512
Branch('.', init=True)
515
class cmd_diff(Command):
516
"""Show differences in working tree.
518
If files are listed, only the changes in those files are listed.
519
Otherwise, all changes for the tree are listed.
521
TODO: Allow diff across branches.
523
TODO: Option to use external diff command; could be GNU diff, wdiff,
526
TODO: Python difflib is not exactly the same as unidiff; should
527
either fix it up or prefer to use an external diff.
529
TODO: If a directory is given, diff everything under that.
531
TODO: Selected-file diff is inefficient and doesn't show you
534
TODO: This probably handles non-Unix newlines poorly.
542
takes_args = ['file*']
543
takes_options = ['revision', 'diff-options']
544
aliases = ['di', 'dif']
546
def run(self, revision=None, file_list=None, diff_options=None):
547
from bzrlib.diff import show_diff
550
b = find_branch(file_list[0])
551
file_list = [b.relpath(f) for f in file_list]
552
if file_list == ['']:
553
# just pointing to top-of-tree
558
if revision is not None:
559
if len(revision) == 1:
560
show_diff(b, revision[0], specific_files=file_list,
561
external_diff_options=diff_options)
562
elif len(revision) == 2:
563
show_diff(b, revision[0], specific_files=file_list,
564
external_diff_options=diff_options,
565
revision2=revision[1])
567
raise BzrCommandError('bzr diff --revision takes exactly one or two revision identifiers')
569
show_diff(b, None, specific_files=file_list,
570
external_diff_options=diff_options)
575
class cmd_deleted(Command):
576
"""List files deleted in the working tree.
578
TODO: Show files deleted since a previous revision, or between two revisions.
580
def run(self, show_ids=False):
583
new = b.working_tree()
585
## TODO: Much more efficient way to do this: read in new
586
## directories with readdir, rather than stating each one. Same
587
## level of effort but possibly much less IO. (Or possibly not,
588
## if the directories are very large...)
590
for path, ie in old.inventory.iter_entries():
591
if not new.has_id(ie.file_id):
593
print '%-50s %s' % (path, ie.file_id)
598
class cmd_modified(Command):
599
"""List files modified in working tree."""
602
from bzrlib.delta import compare_trees
605
td = compare_trees(b.basis_tree(), b.working_tree())
607
for path, id, kind in td.modified:
612
class cmd_added(Command):
613
"""List files added in working tree."""
617
wt = b.working_tree()
618
basis_inv = b.basis_tree().inventory
621
if file_id in basis_inv:
623
path = inv.id2path(file_id)
624
if not os.access(b.abspath(path), os.F_OK):
630
class cmd_root(Command):
631
"""Show the tree root directory.
633
The root is the nearest enclosing directory with a .bzr control
635
takes_args = ['filename?']
636
def run(self, filename=None):
637
"""Print the branch root."""
638
b = find_branch(filename)
642
class cmd_log(Command):
643
"""Show log of this branch.
645
To request a range of logs, you can use the command -r begin:end
646
-r revision requests a specific revision, -r :end or -r begin: are
649
--message allows you to give a regular expression, which will be evaluated
650
so that only matching entries will be displayed.
652
TODO: Make --revision support uuid: and hash: [future tag:] notation.
656
takes_args = ['filename?']
657
takes_options = ['forward', 'timezone', 'verbose', 'show-ids', 'revision',
658
'long', 'message', 'short',]
660
def run(self, filename=None, timezone='original',
668
from bzrlib.log import log_formatter, show_log
671
direction = (forward and 'forward') or 'reverse'
674
b = find_branch(filename)
675
fp = b.relpath(filename)
677
file_id = b.read_working_inventory().path2id(fp)
679
file_id = None # points to branch root
687
elif len(revision) == 1:
688
rev1 = rev2 = RevisionSpec(b, revision[0]).revno
689
elif len(revision) == 2:
690
rev1 = RevisionSpec(b, revision[0]).revno
691
rev2 = RevisionSpec(b, revision[1]).revno
693
raise BzrCommandError('bzr log --revision takes one or two values.')
700
mutter('encoding log as %r' % bzrlib.user_encoding)
702
# use 'replace' so that we don't abort if trying to write out
703
# in e.g. the default C locale.
704
outf = codecs.getwriter(bzrlib.user_encoding)(sys.stdout, errors='replace')
710
lf = log_formatter(log_format,
713
show_timezone=timezone)
726
class cmd_touching_revisions(Command):
727
"""Return revision-ids which affected a particular file.
729
A more user-friendly interface is "bzr log FILE"."""
731
takes_args = ["filename"]
732
def run(self, filename):
733
b = find_branch(filename)
734
inv = b.read_working_inventory()
735
file_id = inv.path2id(b.relpath(filename))
736
for revno, revision_id, what in bzrlib.log.find_touching_revisions(b, file_id):
737
print "%6d %s" % (revno, what)
740
class cmd_ls(Command):
741
"""List files in a tree.
743
TODO: Take a revision or remote path and list that tree instead.
746
def run(self, revision=None, verbose=False):
749
tree = b.working_tree()
751
tree = b.revision_tree(b.lookup_revision(revision))
753
for fp, fc, kind, fid in tree.list_files():
755
if kind == 'directory':
762
print '%-8s %s%s' % (fc, fp, kindch)
768
class cmd_unknowns(Command):
769
"""List unknown files."""
771
from bzrlib.osutils import quotefn
772
for f in find_branch('.').unknowns():
777
class cmd_ignore(Command):
778
"""Ignore a command or pattern.
780
To remove patterns from the ignore list, edit the .bzrignore file.
782
If the pattern contains a slash, it is compared to the whole path
783
from the branch root. Otherwise, it is comapred to only the last
784
component of the path.
786
Ignore patterns are case-insensitive on case-insensitive systems.
788
Note: wildcards must be quoted from the shell on Unix.
791
bzr ignore ./Makefile
794
takes_args = ['name_pattern']
796
def run(self, name_pattern):
797
from bzrlib.atomicfile import AtomicFile
801
ifn = b.abspath('.bzrignore')
803
if os.path.exists(ifn):
806
igns = f.read().decode('utf-8')
812
# TODO: If the file already uses crlf-style termination, maybe
813
# we should use that for the newly added lines?
815
if igns and igns[-1] != '\n':
817
igns += name_pattern + '\n'
820
f = AtomicFile(ifn, 'wt')
821
f.write(igns.encode('utf-8'))
826
inv = b.working_tree().inventory
827
if inv.path2id('.bzrignore'):
828
mutter('.bzrignore is already versioned')
830
mutter('need to make new .bzrignore file versioned')
831
b.add(['.bzrignore'])
835
class cmd_ignored(Command):
836
"""List ignored files and the patterns that matched them.
838
See also: bzr ignore"""
840
tree = find_branch('.').working_tree()
841
for path, file_class, kind, file_id in tree.list_files():
842
if file_class != 'I':
844
## XXX: Slightly inefficient since this was already calculated
845
pat = tree.is_ignored(path)
846
print '%-50s %s' % (path, pat)
849
class cmd_lookup_revision(Command):
850
"""Lookup the revision-id from a revision-number
853
bzr lookup-revision 33
856
takes_args = ['revno']
858
def run(self, revno):
862
raise BzrCommandError("not a valid revision-number: %r" % revno)
864
print find_branch('.').get_rev_id(revno)
867
class cmd_export(Command):
868
"""Export past revision to destination directory.
870
If no revision is specified this exports the last committed revision.
872
Format may be an "exporter" name, such as tar, tgz, tbz2. If none is
873
given, try to find the format with the extension. If no extension
874
is found exports to a directory (equivalent to --format=dir).
876
Root may be the top directory for tar, tgz and tbz2 formats. If none
877
is given, the top directory will be the root name of the file."""
878
# TODO: list known exporters
879
takes_args = ['dest']
880
takes_options = ['revision', 'format', 'root']
881
def run(self, dest, revision=None, format=None, root=None):
885
rev_id = b.last_patch()
887
if len(revision) != 1:
888
raise BzrError('bzr export --revision takes exactly 1 argument')
889
rev_id = RevisionSpec(b, revision[0]).rev_id
890
t = b.revision_tree(rev_id)
891
root, ext = os.path.splitext(dest)
895
elif ext in (".gz", ".tgz"):
897
elif ext in (".bz2", ".tbz2"):
901
t.export(dest, format, root)
904
class cmd_cat(Command):
905
"""Write a file's text from a previous revision."""
907
takes_options = ['revision']
908
takes_args = ['filename']
910
def run(self, filename, revision=None):
912
raise BzrCommandError("bzr cat requires a revision number")
913
elif len(revision) != 1:
914
raise BzrCommandError("bzr cat --revision takes exactly one number")
916
b.print_file(b.relpath(filename), revision[0])
919
class cmd_local_time_offset(Command):
920
"""Show the offset in seconds from GMT to local time."""
923
print bzrlib.osutils.local_time_offset()
927
class cmd_commit(Command):
928
"""Commit changes into a new revision.
930
If no arguments are given, the entire tree is committed.
932
If selected files are specified, only changes to those files are
933
committed. If a directory is specified then the directory and everything
934
within it is committed.
936
A selected-file commit may fail in some cases where the committed
937
tree would be invalid, such as trying to commit a file in a
938
newly-added directory that is not itself committed.
940
TODO: Run hooks on tree to-be-committed, and after commit.
942
TODO: Strict commit that fails if there are unknown or deleted files.
944
takes_args = ['selected*']
945
takes_options = ['message', 'file', 'verbose', 'unchanged']
946
aliases = ['ci', 'checkin']
948
# TODO: Give better message for -s, --summary, used by tla people
950
def run(self, message=None, file=None, verbose=True, selected_list=None,
952
from bzrlib.errors import PointlessCommit
953
from bzrlib.msgeditor import edit_commit_message
954
from bzrlib.status import show_status
955
from cStringIO import StringIO
959
selected_list = [b.relpath(s) for s in selected_list]
961
if not message and not file:
963
show_status(b, specific_files=selected_list,
965
message = edit_commit_message(catcher.getvalue())
968
raise BzrCommandError("please specify a commit message"
969
" with either --message or --file")
970
elif message and file:
971
raise BzrCommandError("please specify either --message or --file")
975
message = codecs.open(file, 'rt', bzrlib.user_encoding).read()
978
b.commit(message, verbose=verbose,
979
specific_files=selected_list,
980
allow_pointless=unchanged)
981
except PointlessCommit:
982
# FIXME: This should really happen before the file is read in;
983
# perhaps prepare the commit; get the message; then actually commit
984
raise BzrCommandError("no changes to commit",
985
["use --unchanged to commit anyhow"])
988
class cmd_check(Command):
989
"""Validate consistency of branch history.
991
This command checks various invariants about the branch storage to
992
detect data corruption or bzr bugs.
994
If given the --update flag, it will update some optional fields
995
to help ensure data consistency.
997
takes_args = ['dir?']
999
def run(self, dir='.'):
1000
from bzrlib.check import check
1002
check(find_branch(dir))
1005
class cmd_scan_cache(Command):
1008
from bzrlib.hashcache import HashCache
1014
print '%6d stats' % c.stat_count
1015
print '%6d in hashcache' % len(c._cache)
1016
print '%6d files removed from cache' % c.removed_count
1017
print '%6d hashes updated' % c.update_count
1018
print '%6d files changed too recently to cache' % c.danger_count
1025
class cmd_upgrade(Command):
1026
"""Upgrade branch storage to current format.
1028
The check command or bzr developers may sometimes advise you to run
1031
takes_args = ['dir?']
1033
def run(self, dir='.'):
1034
from bzrlib.upgrade import upgrade
1035
upgrade(find_branch(dir))
1039
class cmd_whoami(Command):
1040
"""Show bzr user id."""
1041
takes_options = ['email']
1043
def run(self, email=False):
1045
b = bzrlib.branch.find_branch('.')
1050
print bzrlib.osutils.user_email(b)
1052
print bzrlib.osutils.username(b)
1055
class cmd_selftest(Command):
1056
"""Run internal test suite"""
1058
takes_options = ['verbose', 'pattern']
1059
def run(self, verbose=False, pattern=".*"):
1061
from bzrlib.selftest import selftest
1062
# we don't want progress meters from the tests to go to the
1063
# real output; and we don't want log messages cluttering up
1065
save_ui = bzrlib.ui.ui_factory
1066
bzrlib.trace.info('running tests...')
1068
bzrlib.ui.ui_factory = bzrlib.ui.SilentUIFactory()
1069
result = selftest(verbose=verbose, pattern=pattern)
1071
bzrlib.trace.info('tests passed')
1073
bzrlib.trace.info('tests failed')
1074
return int(not result)
1076
bzrlib.ui.ui_factory = save_ui
1080
print "bzr (bazaar-ng) %s" % bzrlib.__version__
1081
# is bzrlib itself in a branch?
1082
bzrrev = bzrlib.get_bzr_revision()
1084
print " (bzr checkout, revision %d {%s})" % bzrrev
1085
print bzrlib.__copyright__
1086
print "http://bazaar-ng.org/"
1088
print "bzr comes with ABSOLUTELY NO WARRANTY. bzr is free software, and"
1089
print "you may use, modify and redistribute it under the terms of the GNU"
1090
print "General Public License version 2 or later."
1093
class cmd_version(Command):
1094
"""Show version of bzr."""
1098
class cmd_rocks(Command):
1099
"""Statement of optimism."""
1102
print "it sure does!"
1105
class cmd_find_merge_base(Command):
1106
"""Find and print a base revision for merging two branches.
1108
TODO: Options to specify revisions on either side, as if
1109
merging only part of the history.
1111
takes_args = ['branch', 'other']
1114
def run(self, branch, other):
1115
from bzrlib.revision import common_ancestor, MultipleRevisionSources
1117
branch1 = find_branch(branch)
1118
branch2 = find_branch(other)
1120
history_1 = branch1.revision_history()
1121
history_2 = branch2.revision_history()
1123
last1 = branch1.last_patch()
1124
last2 = branch2.last_patch()
1126
source = MultipleRevisionSources(branch1, branch2)
1128
base_rev_id = common_ancestor(last1, last2, source)
1130
print 'merge base is revision %s' % base_rev_id
1134
if base_revno is None:
1135
raise bzrlib.errors.UnrelatedBranches()
1137
print ' r%-6d in %s' % (base_revno, branch)
1139
other_revno = branch2.revision_id_to_revno(base_revid)
1141
print ' r%-6d in %s' % (other_revno, other)
1145
class cmd_merge(Command):
1146
"""Perform a three-way merge.
1148
The branch is the branch you will merge from. By default, it will
1149
merge the latest revision. If you specify a revision, that
1150
revision will be merged. If you specify two revisions, the first
1151
will be used as a BASE, and the second one as OTHER. Revision
1152
numbers are always relative to the specified branch.
1154
By default bzr will try to merge in all new work from the other
1155
branch, automatically determining an appropriate base. If this
1156
fails, you may need to give an explicit base.
1160
To merge the latest revision from bzr.dev
1161
bzr merge ../bzr.dev
1163
To merge changes up to and including revision 82 from bzr.dev
1164
bzr merge -r 82 ../bzr.dev
1166
To merge the changes introduced by 82, without previous changes:
1167
bzr merge -r 81..82 ../bzr.dev
1169
merge refuses to run if there are any uncommitted changes, unless
1172
takes_args = ['branch?']
1173
takes_options = ['revision', 'force', 'merge-type']
1175
def run(self, branch='.', revision=None, force=False,
1177
from bzrlib.merge import merge
1178
from bzrlib.merge_core import ApplyMerge3
1179
if merge_type is None:
1180
merge_type = ApplyMerge3
1182
if revision is None or len(revision) < 1:
1184
other = [branch, -1]
1186
if len(revision) == 1:
1187
other = [branch, revision[0]]
1190
assert len(revision) == 2
1191
if None in revision:
1192
raise BzrCommandError(
1193
"Merge doesn't permit that revision specifier.")
1194
base = [branch, revision[0]]
1195
other = [branch, revision[1]]
1198
merge(other, base, check_clean=(not force), merge_type=merge_type)
1199
except bzrlib.errors.AmbiguousBase, e:
1200
m = ("sorry, bzr can't determine the right merge base yet\n"
1201
"candidates are:\n "
1202
+ "\n ".join(e.bases)
1204
"please specify an explicit base with -r,\n"
1205
"and (if you want) report this to the bzr developers\n")
1209
class cmd_revert(Command):
1210
"""Reverse all changes since the last commit.
1212
Only versioned files are affected. Specify filenames to revert only
1213
those files. By default, any files that are changed will be backed up
1214
first. Backup files have a '~' appended to their name.
1216
takes_options = ['revision', 'no-backup']
1217
takes_args = ['file*']
1218
aliases = ['merge-revert']
1220
def run(self, revision=None, no_backup=False, file_list=None):
1221
from bzrlib.merge import merge
1222
from bzrlib.branch import Branch
1223
from bzrlib.commands import parse_spec
1225
if file_list is not None:
1226
if len(file_list) == 0:
1227
raise BzrCommandError("No files specified")
1228
if revision is None:
1230
elif len(revision) != 1:
1231
raise BzrCommandError('bzr revert --revision takes exactly 1 argument')
1232
merge(('.', revision[0]), parse_spec('.'),
1235
backup_files=not no_backup,
1236
file_list=file_list)
1238
Branch('.').set_pending_merges([])
1241
class cmd_assert_fail(Command):
1242
"""Test reporting of assertion failures"""
1245
assert False, "always fails"
1248
class cmd_help(Command):
1249
"""Show help on a command or other topic.
1251
For a list of all available commands, say 'bzr help commands'."""
1252
takes_options = ['long']
1253
takes_args = ['topic?']
1256
def run(self, topic=None, long=False):
1258
if topic is None and long:
1263
class cmd_shell_complete(Command):
1264
"""Show appropriate completions for context.
1266
For a list of all available commands, say 'bzr shell-complete'."""
1267
takes_args = ['context?']
1271
def run(self, context=None):
1272
import shellcomplete
1273
shellcomplete.shellcomplete(context)
1276
class cmd_missing(Command):
1277
"""What is missing in this branch relative to other branch.
1279
takes_args = ['remote?']
1280
aliases = ['mis', 'miss']
1281
# We don't have to add quiet to the list, because
1282
# unknown options are parsed as booleans
1283
takes_options = ['verbose', 'quiet']
1285
def run(self, remote=None, verbose=False, quiet=False):
1286
from bzrlib.errors import BzrCommandError
1287
from bzrlib.missing import show_missing
1289
if verbose and quiet:
1290
raise BzrCommandError('Cannot pass both quiet and verbose')
1292
b = find_branch('.')
1293
parent = b.get_parent()
1296
raise BzrCommandError("No missing location known or specified.")
1299
print "Using last location: %s" % parent
1301
elif parent is None:
1302
# We only update x-pull if it did not exist, missing should not change the parent
1303
b.controlfile('x-pull', 'wb').write(remote + '\n')
1304
br_remote = find_branch(remote)
1306
return show_missing(b, br_remote, verbose=verbose, quiet=quiet)
1310
class cmd_plugins(Command):
1314
import bzrlib.plugin
1315
from inspect import getdoc
1316
for plugin in bzrlib.plugin.all_plugins:
1317
if hasattr(plugin, '__path__'):
1318
print plugin.__path__[0]
1319
elif hasattr(plugin, '__file__'):
1320
print plugin.__file__
1326
print '\t', d.split('\n')[0]