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

  • Committer: Jelmer Vernooij
  • Date: 2019-08-11 13:21:03 UTC
  • mfrom: (7379 work)
  • mto: This revision was merged to the branch mainline in revision 7388.
  • Revision ID: jelmer@jelmer.uk-20190811132103-u3ne03yf37c1h57n
merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
785
785
        :param refs: Refs dictionary (name -> git sha1)
786
786
        :return: iterator over (ref_name, tag_name, peeled_sha1, unpeeled_sha1)
787
787
        """
788
 
        refs = self.repository._git.refs
 
788
        refs = self.repository.controldir.get_refs_container()
789
789
        for ref_name, unpeeled in viewitems(refs.as_dict()):
790
790
            try:
791
791
                tag_name = ref_to_tag_name(ref_name)