~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Martin Pool
  • Date: 2008-06-25 10:06:48 UTC
  • mfrom: (3509 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3510.
  • Revision ID: mbp@sourcefrog.net-20080625100648-ac20jxcm3ojucuby
merge trunk; remove RemoteToOtherFetcher

Show diffs side-by-side

added added

removed removed

Lines of Context:
134
134
    
135
135
    Note that --short or -S gives status flags for each item, similar
136
136
    to Subversion's status command. To get output similar to svn -q,
137
 
    use bzr -SV.
 
137
    use bzr status -SV.
138
138
 
139
139
    If no arguments are specified, the status of the entire working
140
140
    directory is shown.  Otherwise, only the status of the specified
3355
3355
        shellcomplete.shellcomplete(context)
3356
3356
 
3357
3357
 
3358
 
class cmd_fetch(Command):
3359
 
    """Copy in history from another branch but don't merge it.
3360
 
 
3361
 
    This is an internal method used for pull and merge.
3362
 
    """
3363
 
    hidden = True
3364
 
    takes_args = ['from_branch', 'to_branch']
3365
 
    def run(self, from_branch, to_branch):
3366
 
        from bzrlib.fetch import Fetcher
3367
 
        from_b = Branch.open(from_branch)
3368
 
        to_b = Branch.open(to_branch)
3369
 
        Fetcher(to_b, from_b)
3370
 
 
3371
 
 
3372
3358
class cmd_missing(Command):
3373
3359
    """Show unmerged/unpulled revisions between two branches.
3374
3360