summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Command/Sync.hs5
1 files changed, 4 insertions, 1 deletions
diff --git a/Command/Sync.hs b/Command/Sync.hs
index acc5fbbc9..85f1f2f2c 100644
--- a/Command/Sync.hs
+++ b/Command/Sync.hs
@@ -172,7 +172,10 @@ mergeConfig :: [Git.Merge.MergeConfig]
mergeConfig =
[ Git.Merge.MergeNonInteractive
-- In several situations, unrelated histories should be merged
- -- together. This includes pairing in the assistant etc.
+ -- together. This includes pairing in the assistant, and merging
+ -- from a remote into a newly created direct mode repo.
+ -- (Once direct mode is removed, this could be changed, so only
+ -- the assistant uses it.)
, Git.Merge.MergeUnrelatedHistories
]