enhance: reduce commits loading time for interactive rebase

This commit is contained in:
leo 2024-08-01 18:05:58 +08:00
parent 7891b1124e
commit eb437df9fe
No known key found for this signature in database
3 changed files with 101 additions and 13 deletions

View file

@ -104,4 +104,10 @@ namespace SourceGit.Models
});
}
}
public class CommitWithMessage
{
public Commit Commit { get; set; } = new Commit();
public string Message { get; set; } = "";
}
}