From d4b5fdb2d0a4373211b4f6a3032f4e7eda279e90 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 16 Jun 2016 16:34:04 -0400 Subject: [PATCH] devblog --- doc/devblog/day_400-401__git_development.mdwn | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 doc/devblog/day_400-401__git_development.mdwn diff --git a/doc/devblog/day_400-401__git_development.mdwn b/doc/devblog/day_400-401__git_development.mdwn new file mode 100644 index 0000000000..a3b7f5d564 --- /dev/null +++ b/doc/devblog/day_400-401__git_development.mdwn @@ -0,0 +1,11 @@ +Working on git, not git-annex the past two days, I have implemented the +smudge-to-file/clean-from-file extension to the smudge/clean filter +interface. Patches have been [sent to the git developers](http://thread.gmane.org/gmane.comp.version-control.git/297475), +and hopefully they'll like it and include it. This will make git-annex +v6 work a lot faster and better. + +Amazing how much harder it is to code on git than on git-annex! While I'm +certianly not as familiar with the git code base, this is mostly because C +requires so much more care about innumerable details and so much verbosity +to do anything. I probably could have implemented this interface in +git-annex in 2 hours, not 2 days.