diff --git a/src/Commands/Revert.cs b/src/Commands/Revert.cs index b6c3913a..2e7afd11 100644 --- a/src/Commands/Revert.cs +++ b/src/Commands/Revert.cs @@ -6,9 +6,9 @@ { WorkingDirectory = repo; Context = repo; - Args = $"revert {commit} --no-edit"; + Args = $"revert -m 1 {commit} --no-edit"; if (!autoCommit) - Args += " --no-commit"; + Args += " --no-commit"; } } }