Refactor modules/git global variables (#29376)

Move some global variables into a struct to improve maintainability
This commit is contained in:
2024-02-25 13:35:47 +08:00
committed by GitHub
parent 4e3d81e44e
commit 1ef87773b1
8 changed files with 27 additions and 25 deletions

View File

@ -101,7 +101,7 @@ func InitRepository(ctx context.Context, repoPath string, bare bool, objectForma
if !IsValidObjectFormat(objectFormatName) {
return fmt.Errorf("invalid object format: %s", objectFormatName)
}
if SupportHashSha256 {
if DefaultFeatures.SupportHashSha256 {
cmd.AddOptionValues("--object-format", objectFormatName)
}