mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-02 16:29:06 +01:00
33 lines
753 B
Go
33 lines
753 B
Go
|
// Copyright 2024 The Gitea Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package gitrepo
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"code.gitea.io/gitea/modules/git"
|
||
|
)
|
||
|
|
||
|
// GetBranchesByPath returns a branch by its path
|
||
|
// if limit = 0 it will not limit
|
||
|
func GetBranchesByPath(ctx context.Context, repo Repository, skip, limit int) ([]*git.Branch, int, error) {
|
||
|
gitRepo, err := OpenRepository(ctx, repo)
|
||
|
if err != nil {
|
||
|
return nil, 0, err
|
||
|
}
|
||
|
defer gitRepo.Close()
|
||
|
|
||
|
return gitRepo.GetBranches(skip, limit)
|
||
|
}
|
||
|
|
||
|
func GetBranchCommitID(ctx context.Context, repo Repository, branch string) (string, error) {
|
||
|
gitRepo, err := OpenRepository(ctx, repo)
|
||
|
if err != nil {
|
||
|
return "", err
|
||
|
}
|
||
|
defer gitRepo.Close()
|
||
|
|
||
|
return gitRepo.GetBranchCommitID(branch)
|
||
|
}
|