package commands import ( "fmt" ) func (c *GitCommand) AddRemote(name string, url string) error { return c.RunCommand("git remote add %s %s", name, url) } func (c *GitCommand) RemoveRemote(name string) error { return c.RunCommand("git remote remove %s", name) } func (c *GitCommand) RenameRemote(oldRemoteName string, newRemoteName string) error { return c.RunCommand("git remote rename %s %s", oldRemoteName, newRemoteName) } func (c *GitCommand) UpdateRemoteUrl(remoteName string, updatedUrl string) error { return c.RunCommand("git remote set-url %s %s", remoteName, updatedUrl) } func (c *GitCommand) DeleteRemoteBranch(remoteName string, branchName string, promptUserForCredential func(string) string) error { command := fmt.Sprintf("git push %s --delete %s", remoteName, branchName) return c.OSCommand.DetectUnamePass(command, promptUserForCredential) } // CheckRemoteBranchExists Returns remote branch func (c *GitCommand) CheckRemoteBranchExists(branchName string) bool { _, err := c.OSCommand.RunCommandWithOutput( "git show-ref --verify -- refs/remotes/origin/%s", branchName, ) return err == nil } // GetRemoteURL returns current repo remote url func (c *GitCommand) GetRemoteURL() string { return c.GetConfigValue("remote.origin.url") }