summaryrefslogtreecommitdiffstats
path: root/pkg/commands/git_commands/common.go
blob: cf8250863c6991bb84e19c0d625b15370c8144ad (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
31
32
33
34
35
36
37
38
39
40
41
42
package git_commands

import (
	gogit "github.com/jesseduffield/go-git/v5"
	"github.com/jesseduffield/lazygit/pkg/commands/oscommands"
	"github.com/jesseduffield/lazygit/pkg/common"
	"github.com/sasha-s/go-deadlock"
)

type GitCommon struct {
	*common.Common
	version   *GitVersion
	cmd       oscommands.ICmdObjBuilder
	os        *oscommands.OSCommand
	repoPaths *RepoPaths
	repo      *gogit.Repository
	config    *ConfigCommands
	// mutex for doing things like push/pull/fetch
	syncMutex *deadlock.Mutex
}

func NewGitCommon(
	cmn *common.Common,
	version *GitVersion,
	cmd oscommands.ICmdObjBuilder,
	osCommand *oscommands.OSCommand,
	repoPaths *RepoPaths,
	repo *gogit.Repository,
	config *ConfigCommands,
	syncMutex *deadlock.Mutex,
) *GitCommon {
	return &GitCommon{
		Common:    cmn,
		version:   version,
		cmd:       cmd,
		os:        osCommand,
		repoPaths: repoPaths,
		repo:      repo,
		config:    config,
		syncMutex: syncMutex,
	}
}