summaryrefslogtreecommitdiffstats
path: root/pkg/commands/remotes.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/commands/remotes.go')
-rw-r--r--pkg/commands/remotes.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkg/commands/remotes.go b/pkg/commands/remotes.go
index 535149c1a..75dee0b46 100644
--- a/pkg/commands/remotes.go
+++ b/pkg/commands/remotes.go
@@ -2,8 +2,6 @@ package commands
import (
"fmt"
-
- "github.com/jesseduffield/lazygit/pkg/commands/models"
)
func (c *GitCommand) AddRemote(name string, url string) error {
@@ -28,10 +26,10 @@ func (c *GitCommand) DeleteRemoteBranch(remoteName string, branchName string, pr
}
// CheckRemoteBranchExists Returns remote branch
-func (c *GitCommand) CheckRemoteBranchExists(branch *models.Branch) bool {
+func (c *GitCommand) CheckRemoteBranchExists(branchName string) bool {
_, err := c.OSCommand.RunCommandWithOutput(
"git show-ref --verify -- refs/remotes/origin/%s",
- branch.Name,
+ branchName,
)
return err == nil