Show the window before slow location probes and wrap git.exe for commit, diff, and merge.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-08-24 16:31:56 +02:00
parent a3c54bbb03
commit 9efb306979
42 changed files with 3184 additions and 77 deletions

View File

@@ -0,0 +1,14 @@
using System.Windows;
using Explorer.Presentation.ViewModels;
namespace Explorer.App;
public partial class GitDiffWindow : Window
{
public GitDiffWindow(GitDiffViewModel vm)
{
InitializeComponent();
DataContext = vm;
Title = vm.Title;
}
}