print out git version
This commit is contained in:
parent
a42514613f
commit
6a6e43f964
2 changed files with 6 additions and 0 deletions
|
@ -6,6 +6,7 @@ package git
|
|||
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"strings"
|
||||
|
||||
"github.com/Unknwon/com"
|
||||
|
@ -78,6 +79,10 @@ func (v *Version) AtLeast(that *Version) bool {
|
|||
return v.Compare(that) >= 0
|
||||
}
|
||||
|
||||
func (v *Version) String() string {
|
||||
return fmt.Sprintf("%d.%d.%d", v.Major, v.Minor, v.Patch)
|
||||
}
|
||||
|
||||
// GetVersion returns current Git version installed.
|
||||
func GetVersion() (*Version, error) {
|
||||
if gitVer != nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue