summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2016-05-23 18:26:45 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2016-05-23 18:26:45 -0400
commit5215c82ccbc91a2d6a7329ba444472695bec52a1 (patch)
tree64011d1722e5e31c5f167199e26cbd69cf00045d
parent2749e7ff0607a5fb5de9921cf6a513594d7adbe8 (diff)
devblog
-rw-r--r--doc/devblog/day_393__fun_and_more_fun.mdwn15
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/devblog/day_393__fun_and_more_fun.mdwn b/doc/devblog/day_393__fun_and_more_fun.mdwn
new file mode 100644
index 000000000..9d1fc0c32
--- /dev/null
+++ b/doc/devblog/day_393__fun_and_more_fun.mdwn
@@ -0,0 +1,15 @@
+Over the weekend, I noticed that a relative path to `GIT_INDEX_FILE` is
+interpreted in several different, inconsistent ways by git. git-annex
+mostly used absolute paths, but did use a relative path in `git annex
+view`. Now it will only use absolute paths to avoid git's wacky behavior.
+
+Integrated some patches to support building with ghc 8.0.1, which was
+recently released.
+
+The gnupg-options git configs were not always passed to gpg. Fixing this
+involved quite a lot of plumbing to get the options to the right functions,
+and consumed half of today.
+
+Also did some design work on [[design/external_special_remote_protocol]]
+to avoid backwards compatability problems when adding new protocol
+features.