From 8d533e5270033716bf09b0461f614d8d566a4a5e Mon Sep 17 00:00:00 2001 From: leo Date: Fri, 8 Mar 2024 17:49:03 +0800 Subject: [PATCH] style: UseRebase and AutoStash perfered selected by default --- src/ViewModels/Pull.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ViewModels/Pull.cs b/src/ViewModels/Pull.cs index fab1afb3..881b779a 100644 --- a/src/ViewModels/Pull.cs +++ b/src/ViewModels/Pull.cs @@ -40,12 +40,12 @@ namespace SourceGit.ViewModels { public bool UseRebase { get; set; - } + } = true; public bool AutoStash { get; set; - } + } = true; public Pull(Repository repo, Models.Branch specifiedRemoteBranch) { _repo = repo;