summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-06-09 20:14:52 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-06-09 20:16:01 -0400
commitf4308b107242781b5de98804eb68a9657b348c49 (patch)
treef6431c467f95eff81b92633b19b7595bb6b3928e /doc
parent2ca723a7c1c1130465b21d7db23c137976f58f6f (diff)
devblog
Diffstat (limited to 'doc')
-rw-r--r--doc/devblog/day_181__tricky_merge.mdwn8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/devblog/day_181__tricky_merge.mdwn b/doc/devblog/day_181__tricky_merge.mdwn
new file mode 100644
index 000000000..c6bcaf8d4
--- /dev/null
+++ b/doc/devblog/day_181__tricky_merge.mdwn
@@ -0,0 +1,8 @@
+Spent most of today improving behavior when a sync or merge is
+interrupted in direct mode. It was possible for an interrupt at the wrong
+time to leave the merge committed, but the work tree not yet updated. And
+then the next sync would make a commit that reverted the merged changes!
+
+To fix this I had to avoid making any merge commit or indeed updating the
+index until after the work tree is updated. It looked intractable for a
+while; I'm still surprised I eventually succeeded.