From 7ccd0ea80ea6b358368b5b1ee84f58fb87478e7f Mon Sep 17 00:00:00 2001 From: leo Date: Thu, 15 Jul 2021 18:28:15 +0800 Subject: [PATCH] optimize: use [Stash & Reapply] as default when create new branch --- src/Views/Popups/CreateBranch.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Views/Popups/CreateBranch.xaml.cs b/src/Views/Popups/CreateBranch.xaml.cs index cac6fd00..f95b3af1 100644 --- a/src/Views/Popups/CreateBranch.xaml.cs +++ b/src/Views/Popups/CreateBranch.xaml.cs @@ -11,7 +11,7 @@ namespace SourceGit.Views.Popups { private string basedOn = null; public string BranchName { get; set; } = ""; - public bool AutoStash { get; set; } = false; + public bool AutoStash { get; set; } = true; public CreateBranch(Models.Repository repo, Models.Branch branch) { this.repo = repo.Path;