diff --git a/pkg/commands/git_commands/remote.go b/pkg/commands/git_commands/remote.go index 82a9d6a46..cfcb85091 100644 --- a/pkg/commands/git_commands/remote.go +++ b/pkg/commands/git_commands/remote.go @@ -85,6 +85,6 @@ func (self *RemoteCommands) GetRemoteURL(remoteName string) (string, error) { Arg("--get-url", remoteName). ToArgv() - url, err := self.cmd.New(cmdArgs).RunWithOutput() + url, err := self.cmd.New(cmdArgs).DontLog().RunWithOutput() return strings.TrimSpace(url), err }