fix: should not use ... to get revision range for rebasing (#1033)

Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
leo 2025-02-28 17:03:51 +08:00
parent f930967698
commit 3e70ff94b0
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -118,7 +118,7 @@ namespace SourceGit.ViewModels
Task.Run(() =>
{
var commits = new Commands.QueryCommitsWithFullMessage(repoPath, $"{on.SHA}...HEAD").Result();
var commits = new Commands.QueryCommitsWithFullMessage(repoPath, $"{on.SHA}..HEAD").Result();
var list = new List<InteractiveRebaseItem>();
foreach (var c in commits)