File tree Expand file tree Collapse file tree 3 files changed +0
-5
lines changed Expand file tree Collapse file tree 3 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -87,8 +87,6 @@ handlePull unresolvedSourceAndTarget pullMode = do
87
87
void $ Cli. updateAtM description targetProjectPath (const $ pure remoteBranchObject)
88
88
Cli. respond $ MergeOverEmpty target
89
89
else do
90
- Cli. respond AboutToMerge
91
-
92
90
let aliceCausalHash = Branch. headHash targetBranch
93
91
lcaCausalHash <- Cli. runTransaction (Operations. lca aliceCausalHash remoteCausalHash)
94
92
Original file line number Diff line number Diff line change @@ -308,7 +308,6 @@ data Output
308
308
| PullSuccessful
309
309
(ReadRemoteNamespace Share. RemoteProjectBranch )
310
310
(ProjectAndBranch Sqlite. Project Sqlite. ProjectBranch )
311
- | AboutToMerge
312
311
| -- | Indicates a trivial merge where the destination was empty and was just replaced.
313
312
MergeOverEmpty (ProjectAndBranch Sqlite. Project Sqlite. ProjectBranch )
314
313
| MergeAlreadyUpToDate2 ! MergeSourceAndTarget
@@ -584,7 +583,6 @@ isFailure o = case o of
584
583
NoBranchWithHash {} -> True
585
584
PullAlreadyUpToDate {} -> False
586
585
PullSuccessful {} -> False
587
- AboutToMerge {} -> False
588
586
MergeOverEmpty {} -> False
589
587
MergeAlreadyUpToDate2 {} -> False
590
588
ListShallow _ es -> null es
Original file line number Diff line number Diff line change @@ -1191,7 +1191,6 @@ notifyUser dir = \case
1191
1191
<> prettyProjectAndBranchName (ProjectAndBranch dest. project. name dest. branch. name)
1192
1192
<> " from"
1193
1193
<> P. group (prettyReadRemoteNamespace ns <> " ." )
1194
- AboutToMerge -> pure " Merging..."
1195
1194
MergeOverEmpty dest ->
1196
1195
pure . P. okCallout $
1197
1196
P. wrap $
You can’t perform that action at this time.
0 commit comments