2018-11-27 22:52:20 +01:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2018-11-27 22:52:20 +01:00
|
|
|
|
|
|
|
package git
|
|
|
|
|
|
|
|
// GetRefs returns all references of the repository.
|
|
|
|
func (repo *Repository) GetRefs() ([]*Reference, error) {
|
|
|
|
return repo.GetRefsFiltered("")
|
|
|
|
}
|