update git which fixes #1133 (#1614)

This commit is contained in:
Lunny Xiao 2017-04-28 22:20:58 +08:00 committed by Kim "BKC" Carlbäcker
parent 18f46fd7cf
commit 91d64656a4
2 changed files with 15 additions and 4 deletions

13
vendor/code.gitea.io/git/git.go generated vendored
View file

@ -1,4 +1,5 @@
// Copyright 2015 The Gogs Authors. All rights reserved.
// Copyright 2017 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
@ -8,6 +9,8 @@ import (
"fmt"
"strings"
"time"
"github.com/mcuadros/go-version"
)
// Version return this package's current version
@ -21,6 +24,8 @@ var (
Debug = false
// Prefix the log prefix
Prefix = "[git-module] "
// GitVersionRequired is the minimum Git version required
GitVersionRequired = "1.8.1.6"
)
func log(format string, args ...interface{}) {
@ -66,7 +71,13 @@ func BinVersion() (string, error) {
}
func init() {
BinVersion()
gitVersion, err := BinVersion()
if err != nil {
panic(fmt.Sprintf("Git version missing: %v", err))
}
if version.Compare(gitVersion, GitVersionRequired, "<") {
panic(fmt.Sprintf("Git version not supported. Requires version > %v", GitVersionRequired))
}
}
// Fsck verifies the connectivity and validity of the objects in the database