0
0
mirror of https://github.com/thegeeklab/wp-git-clone.git synced 2024-09-20 01:22:47 +02:00
wp-git-clone/git/remote.go
2023-12-23 00:59:23 +01:00

21 lines
263 B
Go

package git
import (
"golang.org/x/sys/execabs"
)
// RemoteAdd adds an additional remote to a git repo.
func RemoteAdd(url string) *execabs.Cmd {
args := []string{
"remote",
"add",
"origin",
url,
}
return execabs.Command(
gitBin,
args...,
)
}