1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-08 22:34:21 -04:00
v2fly/tools/git/git.go

59 lines
1.1 KiB
Go
Raw Normal View History

2015-10-17 16:08:28 -04:00
package git
import (
"os"
"os/exec"
"path/filepath"
"strings"
)
const (
VersionUndefined = "undefined"
)
func getRepoRoot() string {
GOPATH := os.Getenv("GOPATH")
2016-08-20 15:03:50 -04:00
return filepath.Join(GOPATH, "src", "v2ray.com", "core")
2015-10-17 16:08:28 -04:00
}
func RevParse(args ...string) (string, error) {
args = append([]string{"rev-parse"}, args...)
cmd := exec.Command("git", args...)
cmd.Dir = getRepoRoot()
output, err := cmd.Output()
if err != nil {
return "", err
}
return strings.TrimSpace(string(output)), nil
}
func NameRev(args ...string) (string, error) {
args = append([]string{"name-rev"}, args...)
cmd := exec.Command("git", args...)
cmd.Dir = getRepoRoot()
output, err := cmd.Output()
if err != nil {
return "", err
}
return strings.TrimSpace(string(output)), nil
}
func RepoVersion(rev string) (string, error) {
rev, err := RevParse(rev)
if err != nil {
return "", err
}
version, err := NameRev("name-rev", "--tags", "--name-only", rev)
if err != nil {
return "", err
}
if strings.HasSuffix(version, "^0") {
version = version[:len(version)-2]
}
return version, nil
}
func RepoVersionHead() (string, error) {
return RepoVersion("HEAD")
}