aboutsummaryrefslogtreecommitdiffstats
path: root/modules/git/git.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/git/git.go')
-rw-r--r--modules/git/git.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/git/git.go b/modules/git/git.go
index 286e1ad8b4..d5caaa0912 100644
--- a/modules/git/git.go
+++ b/modules/git/git.go
@@ -106,7 +106,8 @@ func SetExecutablePath(path string) error {
}
// Init initializes git module
-func Init() error {
+func Init(ctx context.Context) error {
+ DefaultContext = ctx
// Git requires setting user.name and user.email in order to commit changes.
for configKey, defaultValue := range map[string]string{"user.name": "Gitea", "user.email": "gitea@fake.local"} {
if stdout, stderr, err := process.GetManager().Exec("git.Init(get setting)", GitExecutable, "config", "--get", configKey); err != nil || strings.TrimSpace(stdout) == "" {