diff --git a/src/Commands/Push.cs b/src/Commands/Push.cs index 69b859ab..da850229 100644 --- a/src/Commands/Push.cs +++ b/src/Commands/Push.cs @@ -12,7 +12,7 @@ namespace SourceGit.Commands Context = repo; TraitErrorAsOutput = true; SSHKey = new Config(repo).Get($"remote.{remote}.sshkey"); - Args = "push --progress --verbose "; + Args = $"-c remote.{remote}.mirror=false push --progress --verbose "; if (withTags) Args += "--tags ";