aboutsummaryrefslogtreecommitdiffstats
path: root/modules/git/repo_ref.go
blob: 397434e12f2a652978a775be50c5ec9f7b9159d3 (plain)
1
2
3
4
5
6
7
8
9
10
// Copyright 2018 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.

package git

// GetRefs returns all references of the repository.
func (repo *Repository) GetRefs() ([]*Reference, error) {
	return repo.GetRefsFiltered("")
}