0
0
mirror of https://github.com/thegeeklab/wp-git-clone.git synced 2024-09-19 15:12:46 +02:00
wp-git-clone/git/remote.go

21 lines
337 B
Go

package git
import (
"github.com/thegeeklab/wp-plugin-go/v2/types"
"golang.org/x/sys/execabs"
)
// RemoteAdd adds an additional remote to a git repo.
func (r *Repository) RemoteAdd() *types.Cmd {
args := []string{
"remote",
"add",
"origin",
r.RemoteURL,
}
return &types.Cmd{
Cmd: execabs.Command(gitBin, args...),
}
}