/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-07-27 22:47:49 UTC
  • mfrom: (7377 work)
  • mto: This revision was merged to the branch mainline in revision 7378.
  • Revision ID: jelmer@jelmer.uk-20190727224749-rta5fv1sc4ivy6ko
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)