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