From 07f6ae30e49b3dd64280d0eeb142de89806365ea Mon Sep 17 00:00:00 2001
From: zeripath <art27@cantab.net>
Date: Tue, 3 Mar 2020 01:13:01 +0000
Subject: [PATCH] Change default value of DefaultCommandExecutionTimeout to
 match cheatsheet (#10581)

---
 modules/git/command.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/git/command.go b/modules/git/command.go
index 3cb676c8d..c1f386073 100644
--- a/modules/git/command.go
+++ b/modules/git/command.go
@@ -22,7 +22,7 @@ var (
 	GlobalCommandArgs []string
 
 	// DefaultCommandExecutionTimeout default command execution timeout duration
-	DefaultCommandExecutionTimeout = 60 * time.Second
+	DefaultCommandExecutionTimeout = 360 * time.Second
 )
 
 // DefaultLocale is the default LC_ALL to run git commands in.