diff --git a/src/Commands/Clone.cs b/src/Commands/Clone.cs index 1f845cc8..d1542a4c 100644 --- a/src/Commands/Clone.cs +++ b/src/Commands/Clone.cs @@ -19,7 +19,7 @@ namespace SourceGit.Commands { Envs.Add("GIT_SSH_COMMAND", $"ssh -i '{sshKey}'"); Args = ""; } else { - Args = "-c credential.helper=manager-core "; + Args = "-c credential.helper=manager "; } Args += "clone --progress --verbose --recurse-submodules "; diff --git a/src/Commands/Fetch.cs b/src/Commands/Fetch.cs index 4bf156f9..49359462 100644 --- a/src/Commands/Fetch.cs +++ b/src/Commands/Fetch.cs @@ -19,7 +19,7 @@ namespace SourceGit.Commands { Envs.Add("GIT_SSH_COMMAND", $"ssh -i '{sshKey}'"); Args = ""; } else { - Args = "-c credential.helper=manager-core "; + Args = "-c credential.helper=manager "; } Args += "fetch --progress --verbose "; @@ -38,7 +38,7 @@ namespace SourceGit.Commands { Envs.Add("GIT_SSH_COMMAND", $"ssh -i '{sshKey}'"); Args = ""; } else { - Args = "-c credential.helper=manager-core "; + Args = "-c credential.helper=manager "; } Args += $"fetch --progress --verbose {remote} {remoteBranch}:{localBranch}"; diff --git a/src/Commands/Pull.cs b/src/Commands/Pull.cs index f447c52e..eb3b4f4c 100644 --- a/src/Commands/Pull.cs +++ b/src/Commands/Pull.cs @@ -20,7 +20,7 @@ namespace SourceGit.Commands { Envs.Add("GIT_SSH_COMMAND", $"ssh -i '{sshKey}'"); Args = ""; } else { - Args = "-c credential.helper=manager-core "; + Args = "-c credential.helper=manager "; } Args += "pull --verbose --progress --tags "; diff --git a/src/Commands/Push.cs b/src/Commands/Push.cs index 7bfd05e6..c2faed97 100644 --- a/src/Commands/Push.cs +++ b/src/Commands/Push.cs @@ -17,7 +17,7 @@ namespace SourceGit.Commands { Envs.Add("GIT_SSH_COMMAND", $"ssh -i '{sshKey}'"); Args = ""; } else { - Args = "-c credential.helper=manager-core "; + Args = "-c credential.helper=manager "; } Args += "push --progress --verbose "; @@ -37,7 +37,7 @@ namespace SourceGit.Commands { Envs.Add("GIT_SSH_COMMAND", $"ssh -i '{sshKey}'"); Args = ""; } else { - Args = "-c credential.helper=manager-core "; + Args = "-c credential.helper=manager "; } Args += $"push {remote} --delete {branch}"; @@ -51,7 +51,7 @@ namespace SourceGit.Commands { Envs.Add("GIT_SSH_COMMAND", $"ssh -i '{sshKey}'"); Args = ""; } else { - Args = "-c credential.helper=manager-core "; + Args = "-c credential.helper=manager "; } Args += "push ";