code.gitea.io/gitea@v1.19.3/modules/git/repo_ref.go (about)

     1  // Copyright 2018 The Gitea Authors. All rights reserved.
     2  // SPDX-License-Identifier: MIT
     3  
     4  package git
     5  
     6  // GetRefs returns all references of the repository.
     7  func (repo *Repository) GetRefs() ([]*Reference, error) {
     8  	return repo.GetRefsFiltered("")
     9  }