mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	**Backport:** https://codeberg.org/forgejo/forgejo/pulls/7337 - Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Co-authored-by: Gusted <postmaster@gusted.xyz> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7354 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org> Co-committed-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org>
		
			
				
	
	
		
			49 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2024 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package gitrepo
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
 | 
						|
	"forgejo.org/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)
 | 
						|
}
 | 
						|
 | 
						|
// SetDefaultBranch sets default branch of repository.
 | 
						|
func SetDefaultBranch(ctx context.Context, repo Repository, name string) error {
 | 
						|
	_, _, err := git.NewCommand(ctx, "symbolic-ref", "HEAD").
 | 
						|
		AddDynamicArguments(git.BranchPrefix + name).
 | 
						|
		RunStdString(&git.RunOpts{Dir: repoPath(repo)})
 | 
						|
	return err
 | 
						|
}
 | 
						|
 | 
						|
// GetDefaultBranch gets default branch of repository.
 | 
						|
func GetDefaultBranch(ctx context.Context, repo Repository) (string, error) {
 | 
						|
	return git.GetDefaultBranch(ctx, repoPath(repo))
 | 
						|
}
 | 
						|
 | 
						|
func GetWikiDefaultBranch(ctx context.Context, repo Repository) (string, error) {
 | 
						|
	return git.GetDefaultBranch(ctx, wikiPath(repo))
 | 
						|
}
 |