We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 639bff9 commit 9cf1cbaCopy full SHA for 9cf1cba
src/ViewModels/WorkingCopy.cs
@@ -445,6 +445,10 @@ public void ContinueMerge()
445
_repo.SetWatcherEnabled(false);
446
Task.Run(() =>
447
{
448
+ var mergeMsgFile = Path.Combine(_repo.GitDir, "MERGE_MSG");
449
+ if (File.Exists(mergeMsgFile))
450
+ File.WriteAllText(mergeMsgFile, _commitMessage);
451
+
452
var succ = _inProgressContext.Continue();
453
Dispatcher.UIThread.Invoke(() =>
454
0 commit comments