/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/export.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-05-20 17:58:25 UTC
  • mfrom: (6968.4.4 git-archive)
  • Revision ID: breezy.the.bot@gmail.com-20180520175825-4qlo2ido7qbud18s
Implement GitRevisionTree.archive for remote git trees.

Merged from https://code.launchpad.net/~jelmer/brz/git-archive/+merge/345969

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
        return
82
82
 
83
83
    with tree.lock_read():
84
 
        chunks = archive.create_archive(format, tree, dest, root, subdir,
85
 
                                        force_mtime)
 
84
        chunks = tree.archive(format, dest, root=root, subdir=subdir, force_mtime=force_mtime)
86
85
        if dest == '-':
87
86
            for chunk in chunks:
88
87
                 sys.stdout.write(chunk)