mirror of
https://github.com/go-gitea/gitea.git
synced 2026-07-21 13:55:27 +02:00
1. simplify "StorageRepo" code 2. simplify git.OpenRepository code 3. by the way, clean up some unused files in git test fixtures.
23 lines
624 B
Go
23 lines
624 B
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package git
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"gitea.dev/modules/git/gitcmd"
|
|
)
|
|
|
|
// WriteCommitGraph write commit graph to speed up repo access
|
|
// this requires git v2.18 to be installed
|
|
func WriteCommitGraph(ctx context.Context, repo RepositoryFacade) error {
|
|
if DefaultFeatures().CheckVersionAtLeast("2.18") {
|
|
if _, _, err := gitcmd.NewCommand("commit-graph", "write").WithRepo(repo).RunStdString(ctx); err != nil {
|
|
return fmt.Errorf("unable to write commit-graph for '%s' : %w", repo.GitRepoLocation(), err)
|
|
}
|
|
}
|
|
return nil
|
|
}
|