0
0
mirror of https://github.com/thegeeklab/wp-git-action.git synced 2024-11-09 17:10:41 +00:00
wp-git-action/repo/config.go

30 lines
412 B
Go
Raw Normal View History

2019-06-07 10:32:16 +00:00
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
}