/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/git/git-remote-bzr

  • Committer: Jelmer Vernooij
  • Date: 2020-06-19 21:26:53 UTC
  • mfrom: (7490.40.19 work)
  • mto: This revision was merged to the branch mainline in revision 7516.
  • Revision ID: jelmer@jelmer.uk-20200619212653-7j6rgywzczhc8cmj
Merge lp:brz/3.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
    open_remote_dir,
42
42
    )
43
43
 
 
44
from breezy.trace import warning
 
45
 
44
46
parser = optparse.OptionParser()
45
47
(opts, args) = parser.parse_args()
46
48
(shortname, url) = args
47
49
 
 
50
warning(
 
51
    'git-remote-bzr is experimental and has not been optimized for '
 
52
    'performance. Use \'brz fast-export\' and \'git fast-import\' for '
 
53
    'large repositories.')
 
54
 
48
55
helper = RemoteHelper(open_local_dir(), shortname, open_remote_dir(url))
49
56
helper.process(sys.stdin.buffer, sys.stdout.buffer)