0
0
mirror of https://github.com/thegeeklab/wp-git-action.git synced 2024-06-02 18:29:41 +02:00
wp-git-action/repo/config.go
2019-06-07 14:04:53 +02:00

30 lines
412 B
Go

package repo
import (
"os/exec"
)
// GlobalUser sets the global git author email.
func GlobalUser(email string) *exec.Cmd {
cmd := exec.Command(
"git",
"config",
"--global",
"user.email",
email)
return cmd
}
// GlobalName sets the global git author name.
func GlobalName(author string) *exec.Cmd {
cmd := exec.Command(
"git",
"config",
"--global",
"user.name",
author)
return cmd
}