/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_helper.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-08-11 12:19:56 UTC
  • mfrom: (6986.2.4 git-graduate)
  • Revision ID: breezy.the.bot@gmail.com-20180811121956-vg4h6snulccpy99e
Move git support to breezy.git.

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
import os
28
28
 
29
 
from ...controldir import ControlDir
30
 
from ...errors import NotBranchError, NoRepositoryPresent
31
 
from ...repository import InterRepository
32
 
from ...sixish import viewitems
33
 
from ...transport import get_transport_from_path
 
29
from ..controldir import ControlDir
 
30
from ..errors import NotBranchError, NoRepositoryPresent
 
31
from ..repository import InterRepository
 
32
from ..sixish import viewitems
 
33
from ..transport import get_transport_from_path
34
34
 
35
35
from . import (
36
36
    LocalGitProber,
51
51
    GitRepository,
52
52
    )
53
53
 
54
 
from ..fastimport import exporter as fastexporter
 
54
from ..plugins.fastimport import exporter as fastexporter
55
55
 
56
56
try:
57
57
    import fastimport