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

Fix tests, split up InterGitNonGitRepository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
        ForeignRepository.__init__(self, GitRepositoryFormat(), gitdir, 
76
76
            lockfiles)
77
77
        from bzrlib.plugins.git import fetch, push
78
 
        for optimiser in [fetch.InterGitRepository, 
79
 
                          fetch.InterGitNonGitRepository,
 
78
        for optimiser in [fetch.InterRemoteGitNonGitRepository, 
 
79
                          fetch.InterLocalGitNonGitRepository,
 
80
                          fetch.InterGitRepository,
80
81
                          push.InterToGitRepository]:
81
82
            repository.InterRepository.register_optimiser(optimiser)
82
83