5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 09:00:38 +08:00
wails/v2/pkg/git/git.go
2021-11-30 19:02:20 +11:00

42 lines
888 B
Go

package git
import (
"html/template"
"runtime"
"strings"
"github.com/wailsapp/wails/v2/internal/shell"
)
func gitcommand() string {
gitcommand := "git"
if runtime.GOOS == "windows" {
gitcommand = "git.exe"
}
return gitcommand
}
// IsInstalled returns true if git is installed for the given platform
func IsInstalled() bool {
return shell.CommandExists(gitcommand())
}
// Email tries to retrieve the
func Email() (string, error) {
stdout, _, err := shell.RunCommand(".", gitcommand(), "config", "user.email")
return stdout, err
}
// Name tries to retrieve the
func Name() (string, error) {
stdout, _, err := shell.RunCommand(".", gitcommand(), "config", "user.name")
name := template.JSEscapeString(strings.TrimSpace(stdout))
return name, err
}
func InitRepo(projectDir string) error {
_, _, err := shell.RunCommand(projectDir, gitcommand(), "init")
return err
}