0
0
mirror of https://github.com/thegeeklab/wp-git-clone.git synced 2024-06-02 18:29:42 +02:00
wp-git-clone/git/remote.go

24 lines
375 B
Go
Raw Normal View History

2023-12-23 00:59:23 +01:00
package git
import (
"os"
plugin_exec "github.com/thegeeklab/wp-plugin-go/v3/exec"
2023-12-23 00:59:23 +01:00
)
// RemoteAdd adds an additional remote to a git repo.
func (r *Repository) RemoteAdd() *plugin_exec.Cmd {
2023-12-23 00:59:23 +01:00
args := []string{
"remote",
"add",
"origin",
r.RemoteURL,
2023-12-23 00:59:23 +01:00
}
cmd := plugin_exec.Command(gitBin, args...)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
return cmd
2023-12-23 00:59:23 +01:00
}