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

Show proper error when attempting to access history of remote git branches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
271
271
        self._ref = heads[name]
272
272
        super(RemoteGitBranch, self).__init__(bzrdir, repository, name, self._ref, lockfiles)
273
273
 
 
274
    def revision_history(self):
 
275
        raise GitSmartRemoteNotSupported()
 
276
 
274
277
    def last_revision(self):
275
278
        return self.mapping.revision_id_foreign_to_bzr(self._ref)
276
279