Welcome to mirror list, hosted at ThFree Co, Russian Federation.

update_file.go « commit « gitaly-git2go « cmd - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cea5d629b9f294bf622fddc0a68dfd35e27796b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//go:build static && system_libgit2

package commit

import (
	git "github.com/libgit2/git2go/v33"
	"gitlab.com/gitlab-org/gitaly/v15/internal/git2go"
)

func applyUpdateFile(action git2go.UpdateFile, index *git.Index) error {
	entry, err := index.EntryByPath(action.Path, 0)
	if err != nil {
		if git.IsErrorCode(err, git.ErrorCodeNotFound) {
			return git2go.FileNotFoundError(action.Path)
		}

		return err
	}

	oid, err := git.NewOid(action.OID)
	if err != nil {
		return err
	}

	return index.Add(&git.IndexEntry{
		Path: action.Path,
		Mode: entry.Mode,
		Id:   oid,
	})
}