mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 20:36:07 +01:00 
			
		
		
		
	In history, Gitea could use the system config `/etc/gitconfig` because some users said that "they might put certNonceSeed in it" Actually, we shouldn't not use it, because it also causes conflicts (there are already some fixes like #28848) To make the system clear, I think it's worth to introduce the breaking change: add `GIT_CONFIG_NOSYSTEM=1` to all git commands. ## ⚠️ BREAKING ⚠️ For most users, nothing need to do. If you have made changes to `/etc/gitconfig` to affect Gitea's behavior, you need to move these config options to Gitea's internal git config file, it is usually in Gitea's `{AppDataPath}/home/.git` directory.
		
			
				
	
	
		
			76 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2015 The Gogs Authors. All rights reserved.
 | 
						|
// Copyright 2020 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package git
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"fmt"
 | 
						|
	"io"
 | 
						|
	"path/filepath"
 | 
						|
	"strings"
 | 
						|
)
 | 
						|
 | 
						|
// ArchiveType archive types
 | 
						|
type ArchiveType int
 | 
						|
 | 
						|
const (
 | 
						|
	// ZIP zip archive type
 | 
						|
	ZIP ArchiveType = iota + 1
 | 
						|
	// TARGZ tar gz archive type
 | 
						|
	TARGZ
 | 
						|
	// BUNDLE bundle archive type
 | 
						|
	BUNDLE
 | 
						|
)
 | 
						|
 | 
						|
// String converts an ArchiveType to string
 | 
						|
func (a ArchiveType) String() string {
 | 
						|
	switch a {
 | 
						|
	case ZIP:
 | 
						|
		return "zip"
 | 
						|
	case TARGZ:
 | 
						|
		return "tar.gz"
 | 
						|
	case BUNDLE:
 | 
						|
		return "bundle"
 | 
						|
	}
 | 
						|
	return "unknown"
 | 
						|
}
 | 
						|
 | 
						|
func ToArchiveType(s string) ArchiveType {
 | 
						|
	switch s {
 | 
						|
	case "zip":
 | 
						|
		return ZIP
 | 
						|
	case "tar.gz":
 | 
						|
		return TARGZ
 | 
						|
	case "bundle":
 | 
						|
		return BUNDLE
 | 
						|
	}
 | 
						|
	return 0
 | 
						|
}
 | 
						|
 | 
						|
// CreateArchive create archive content to the target path
 | 
						|
func (repo *Repository) CreateArchive(ctx context.Context, format ArchiveType, target io.Writer, usePrefix bool, commitID string) error {
 | 
						|
	if format.String() == "unknown" {
 | 
						|
		return fmt.Errorf("unknown format: %v", format)
 | 
						|
	}
 | 
						|
 | 
						|
	cmd := NewCommand(ctx, "archive")
 | 
						|
	if usePrefix {
 | 
						|
		cmd.AddOptionFormat("--prefix=%s", filepath.Base(strings.TrimSuffix(repo.Path, ".git"))+"/")
 | 
						|
	}
 | 
						|
	cmd.AddOptionFormat("--format=%s", format.String())
 | 
						|
	cmd.AddDynamicArguments(commitID)
 | 
						|
 | 
						|
	var stderr strings.Builder
 | 
						|
	err := cmd.Run(&RunOpts{
 | 
						|
		Dir:    repo.Path,
 | 
						|
		Stdout: target,
 | 
						|
		Stderr: &stderr,
 | 
						|
	})
 | 
						|
	if err != nil {
 | 
						|
		return ConcatenateError(err, stderr.String())
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 |