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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'internal/git2go')
-rw-r--r--internal/git2go/merge.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/git2go/merge.go b/internal/git2go/merge.go
index 946037812..b901353af 100644
--- a/internal/git2go/merge.go
+++ b/internal/git2go/merge.go
@@ -10,6 +10,7 @@ import (
"os/exec"
"path"
"strings"
+ "time"
"gitlab.com/gitlab-org/gitaly/internal/command"
"gitlab.com/gitlab-org/gitaly/internal/gitaly/config"
@@ -29,7 +30,7 @@ type MergeCommand struct {
// AuthorMail is the author mail of merge commit.
AuthorMail string `json:"author_mail"`
// AuthorDate is the auithor date of merge commit.
- AuthorDate string `json:"author_date"`
+ AuthorDate time.Time `json:"author_date"`
// Message is the message to be used for the merge commit.
Message string `json:"message"`
// Ours is the commit that is to be merged into theirs.